:root {
  --bg-mist: #F8F4FD;
  --bg-midnight: #1A1632;
  --accent-rose: #F08FB4;
  --accent-gold: #EAC87D;
  --accent-purple: #8364FF;
  --text-dark: #1B1B1B;
  --text-light: #FAF8FF;
  --shadow-soft: rgba(0,0,0,0.08);
  --glow: 0 0 22px rgba(131,100,255,0.35);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-mist);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

header {
  background: rgba(248, 244, 253, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(131, 100, 255, 0.1);
  width: 100%;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.logo {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-midnight);
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--bg-midnight);
  font-weight: 400;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-rose));
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--bg-midnight);
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
}

.mobile-menu-toggle .menu-icon,
.mobile-menu-toggle .close-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(131, 100, 255, 0.3), rgba(240, 143, 180, 0.2), transparent);
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 50%;
  opacity: 0.6;
  animation: float 8s infinite ease-in-out;
}

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.6; }
  50% { transform: translateY(-30px) translateX(15px); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin-left: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--bg-midnight), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--bg-midnight);
  opacity: 0.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-rose));
  color: var(--text-light);
  box-shadow: var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(131, 100, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-midnight);
  border: 2px solid var(--accent-purple);
}

.btn-secondary:hover {
  background: var(--accent-purple);
  color: var(--text-light);
}

.aurora-ribbon {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(131, 100, 255, 0.1), rgba(240, 143, 180, 0.1));
  overflow: hidden;
}

.aurora-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(131, 100, 255, 0.2), transparent);
  animation: aurora-flow 8s infinite;
}

@keyframes aurora-flow {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--bg-midnight);
  margin-bottom: 15px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(131, 100, 255, 0.2);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow);
  border-color: var(--accent-purple);
}

.service-card h3 {
  color: var(--bg-midnight);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--text-dark);
  opacity: 0.8;
}

.diagonal-section {
  position: relative;
  padding: 80px 20px;
  background: var(--bg-mist);
}

.diagonal-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(131, 100, 255, 0.05) 50%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  z-index: 0;
}

.diagonal-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  margin: 20px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent, rgba(131, 100, 255, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.spotlight-cta {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  background: var(--bg-midnight);
  color: var(--text-light);
  overflow: hidden;
}

.spotlight-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(131, 100, 255, 0.4), transparent);
  border-radius: 50%;
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.spotlight-content {
  position: relative;
  z-index: 1;
}

.spotlight-content h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--text-light);
}

.ribbon-divider {
  position: relative;
  height: 60px;
  margin: 60px 0;
  overflow: hidden;
}

.ribbon-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform: translateY(-50%);
}

.ribbon-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--bg-mist);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(234, 200, 125, 0.3);
}

.event-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.event-card:hover {
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.event-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.event-card-content {
  padding: 25px;
}

.event-card h3 {
  color: var(--bg-midnight);
  margin-bottom: 10px;
}

.left-glass-right-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 20px;
}

.floating-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section[style*="padding"] {
  position: relative;
}

section[style*="grid-template-columns: 2fr 1fr"] > div,
section[style*="grid-template-columns: 1fr 2fr"] > div {
  display: grid;
  align-items: center;
}

section[style*="grid-template-columns: repeat(2"] > div {
  display: grid;
  gap: 30px;
}

section[style*="grid-template-columns: repeat(3"] > div {
  display: grid;
  gap: 25px;
}

section[style*="grid-template-columns: repeat(4"] > div {
  display: grid;
  gap: 20px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 22, 50, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.modal-content img {
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 2rem;
  cursor: pointer;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

form {
  max-width: 600px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

form label {
  display: block;
  margin-bottom: 8px;
  color: var(--bg-midnight);
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(131, 100, 255, 0.2);
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(131, 100, 255, 0.1);
}

form textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.thanks-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, rgba(131, 100, 255, 0.1), rgba(240, 143, 180, 0.1));
}

.thanks-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--bg-midnight), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-message {
  font-size: 1.3rem;
  color: var(--bg-midnight);
  margin-bottom: 30px;
  min-height: 60px;
}

.error-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-page h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: var(--bg-midnight);
}

.error-glow {
  animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(131, 100, 255, 0.5); }
  50% { text-shadow: 0 0 20px rgba(131, 100, 255, 0.8); }
}

footer {
  background: var(--bg-midnight);
  color: var(--text-light);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--accent-gold);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--text-light);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

.legal-page {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  line-height: 1.8;
}

.legal-page h1 {
  margin-bottom: 30px;
  color: var(--bg-midnight);
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--bg-midnight);
}

.legal-page p {
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  header {
    position: relative;
  }

  nav {
    padding: 15px 0;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    min-height: calc(100vh - 60px);
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: rgba(248, 244, 253, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 20px;
    margin: 0;
    border-top: 1px solid rgba(131, 100, 255, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .diagonal-content,
  .left-glass-right-image {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }

  .left-glass-right-image[style*="grid-template-columns: 2fr 1fr"],
  .left-glass-right-image[style*="grid-template-columns: 1fr 2fr"],
  .left-glass-right-image[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero {
    min-height: 70vh;
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .spotlight-cta {
    padding: 60px 20px;
  }

  .spotlight-cta h2 {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .glass-panel {
    padding: 20px;
  }

  form {
    padding: 30px 20px;
  }

  section[style*="grid-template-columns: repeat(3"] > div,
  section[style*="grid-template-columns: repeat(4"] > div,
  section[style*="grid-template-columns: 2fr 1fr"] > div,
  section[style*="grid-template-columns: 1fr 2fr"] > div,
  section[style*="grid-template-columns: 1fr 1fr 1fr"] > div,
  section[style*="grid-template-columns: 1fr 1fr"] > div {
    grid-template-columns: 1fr !important;
  }

  section[style*="grid-template-columns: repeat(2"] > div {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  section[style*="grid-template-columns: repeat(3"] > div {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  section[style*="grid-template-columns: repeat(4"] > div {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .floating-image {
    order: -1;
    width: 100% !important;
  }

  .floating-image img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .aurora-ribbon {
    padding: 40px 20px !important;
  }

  .diagonal-section {
    padding: 60px 20px !important;
  }

  section[style*="padding: 80px"] {
    padding: 50px 20px !important;
  }

  div[style*="max-width: 800px"],
  div[style*="max-width: 700px"],
  div[style*="max-width: 900px"] {
    max-width: 100% !important;
    padding: 0 20px !important;
  }

  h2 {
    font-size: 2rem !important;
  }

  h3 {
    font-size: 1.4rem !important;
  }

  .thanks-page,
  .error-page {
    padding: 50px 20px !important;
  }

  .legal-page {
    padding: 40px 20px !important;
  }
}

@media (max-width: 320px) {
  * {
    box-sizing: border-box !important;
  }

  .container {
    padding: 0 10px !important;
    max-width: 100% !important;
  }

  body {
    overflow-x: hidden !important;
  }

  header {
    padding: 0 !important;
  }

  nav {
    padding: 15px 0 !important;
  }

  .logo {
    font-size: 1.1rem !important;
  }

  header {
    position: relative !important;
  }

  nav {
    padding: 12px 0 !important;
  }

  .nav-menu {
    top: 100% !important;
    min-height: calc(100vh - 50px) !important;
    max-height: calc(100vh - 50px) !important;
    padding: 20px 15px !important;
    gap: 15px !important;
    font-size: 0.95rem !important;
    left: -100% !important;
    overflow-y: auto !important;
  }

  .nav-menu.active {
    left: 0 !important;
  }

  .mobile-menu-toggle {
    font-size: 1.3rem !important;
  }

  .hero {
    padding: 30px 10px !important;
    min-height: 50vh !important;
  }

  .hero h1 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
  }

  .hero p {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
  }

  .cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .btn {
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
  }

  section {
    padding: 40px 10px !important;
    overflow-x: hidden !important;
  }

  section[style*="padding: 80px"] {
    padding: 40px 10px !important;
  }

  section[style*="padding: 60px"] {
    padding: 30px 10px !important;
  }

  .section-header {
    margin-bottom: 30px !important;
  }

  .section-header h2 {
    font-size: 1.6rem !important;
    margin-bottom: 10px !important;
  }

  .section-header p {
    font-size: 0.9rem !important;
    padding: 0 10px !important;
  }

  .aurora-ribbon {
    padding: 30px 10px !important;
  }

  .diagonal-section {
    padding: 30px 10px !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .service-card {
    padding: 20px 15px !important;
    margin-bottom: 15px !important;
  }

  .service-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 10px !important;
  }

  .service-card p {
    font-size: 0.9rem !important;
  }

  .glass-panel {
    padding: 20px 15px !important;
  }

  .glass-panel h2,
  .glass-panel h3 {
    font-size: 1.3rem !important;
  }

  .glass-panel p {
    font-size: 0.9rem !important;
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    padding: 20px 10px !important;
  }

  .gallery-item {
    aspect-ratio: 4/3 !important;
    margin-bottom: 10px !important;
  }

  .diagonal-content,
  .left-glass-right-image {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    padding: 20px 10px !important;
  }

  .floating-image {
    width: 100% !important;
    margin-bottom: 20px !important;
    order: -1 !important;
  }

  .floating-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  div[style*="grid-template-columns: 1fr 1fr 1fr"],
  div[style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  div[style*="grid-template-columns: 2fr 1fr"],
  div[style*="grid-template-columns: 1fr 2fr"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  div[style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .event-card {
    margin-bottom: 15px !important;
  }

  .event-card-content {
    padding: 20px 15px !important;
  }

  .event-card h3 {
    font-size: 1.2rem !important;
  }

  .spotlight-cta {
    padding: 40px 10px !important;
  }

  .spotlight-cta h2 {
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
  }

  .spotlight-cta p {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
  }

  .gold-line {
    width: 40px !important;
    margin: 15px 0 !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  ul, ol {
    padding-left: 20px !important;
  }

  li {
    font-size: 0.9rem !important;
    margin-bottom: 8px !important;
  }

  form {
    padding: 20px 15px !important;
    max-width: 100% !important;
  }

  form label {
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
  }

  form input,
  form textarea {
    font-size: 0.9rem !important;
    padding: 10px !important;
  }

  form textarea {
    min-height: 120px !important;
  }

  .checkbox-group {
    
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .checkbox-group label {
    font-size: 0.85rem !important;
  }

  footer {
    padding: 40px 10px 20px !important;
    margin-top: 40px !important;
  }

  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
    margin-bottom: 30px !important;
  }

  .footer-section h3 {
    font-size: 1.1rem !important;
    margin-bottom: 15px !important;
  }

  .footer-section p,
  .footer-section li {
    font-size: 0.85rem !important;
    margin-bottom: 8px !important;
  }

  .footer-bottom {
    padding-top: 20px !important;
    font-size: 0.85rem !important;
  }

  i[data-lucide] {
    max-width: 100% !important;
  }

  div[style*="width: 60px"],
  div[style*="width: 50px"],
  div[style*="width: 80px"],
  div[style*="width: 100px"] {
    width: 50px !important;
    height: 50px !important;
  }

  div[style*="width: 40px"] {
    width: 35px !important;
    height: 35px !important;
  }

  i[style*="width: 60px"],
  i[style*="width: 50px"] {
    width: 40px !important;
    height: 40px !important;
  }

  i[style*="width: 30px"] {
    width: 25px !important;
    height: 25px !important;
  }

  i[style*="width: 20px"] {
    width: 18px !important;
    height: 18px !important;
  }

  div[style*="max-width: 800px"],
  div[style*="max-width: 700px"],
  div[style*="max-width: 900px"] {
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  div[style*="text-align: center"] {
    text-align: center !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  .modal-content {
    max-width: 95% !important;
    padding: 10px !important;
  }

  .modal-close {
    top: -30px !important;
    font-size: 1.5rem !important;
  }

  section[style*="background"] {
    background-size: cover !important;
    background-position: center !important;
  }

  div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }

  div[style*="display: grid"][style*="align-items"] {
    align-items: stretch !important;
  }

  div[style*="margin: 0 auto"] {
    margin: 0 auto !important;
    width: 100% !important;
  }

  div[style*="text-align: center"] p,
  div[style*="text-align: center"] h3 {
    text-align: center !important;
  }

  .thanks-page {
    padding: 30px 10px !important;
    min-height: 60vh !important;
  }

  .thanks-page h1 {
    font-size: 1.8rem !important;
  }

  .thanks-message {
    font-size: 1.1rem !important;
    padding: 0 10px !important;
  }

  .error-page {
    padding: 30px 10px !important;
    min-height: 60vh !important;
  }

  .error-page h1 {
    font-size: 1.8rem !important;
  }

  .legal-page {
    padding: 30px 10px !important;
  }

  .legal-page h1 {
    font-size: 1.6rem !important;
  }

  .legal-page h2 {
    font-size: 1.3rem !important;
    margin-top: 25px !important;
  }

  .legal-page p {
    font-size: 0.9rem !important;
  }
}

