:root {
  --gradient-base: linear-gradient(135deg, #f5ebe0 0%, #fdf6e3 50%, #e8dfd8 100%);
  --gradient-accent: linear-gradient(135deg, #d4a5ff 0%, #9ec5fe 100%);
  --gradient-button: linear-gradient(135deg, #ff8c42 0%, #ff6b6b 100%);
  --gradient-hero: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.85) 0%,
    rgba(139, 92, 246, 0.75) 50%,
    rgba(168, 85, 247, 0.65) 100%
  );
  --gradient-footer: linear-gradient(180deg, #2d3748 0%, #1a202c 100%);
  --color-primary: #1e3a8a;
  --color-accent: #06b6d4;
  --color-mint: #5eead4;
  --color-graphite: #2d3748;
  --color-white: #ffffff;
  --color-cream: #fdf6e3;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: var(--gradient-base);
  color: var(--color-graphite);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.5px;
}

.nav-link {
  color: var(--color-graphite);
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-link:hover {
  color: var(--color-accent);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-gradient {
  background: var(--gradient-button);
  color: var(--color-white);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  color: var(--color-white);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-graphite);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

.card-gradient {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 235, 224, 0.95) 100%);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.card-gradient:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: var(--color-white);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--color-graphite);
  opacity: 0.85;
  line-height: 1.7;
}

.bubble-container {
  position: relative;
  padding: 4rem 0;
  min-height: 500px;
}

.bubble {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(212, 165, 255, 0.3) 100%);
  border-radius: 50%;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  transition: transform 0.3s ease;
}

.bubble:hover {
  transform: scale(1.05);
}

.bubble-large {
  width: 280px;
  height: 280px;
  font-size: 1.125rem;
}

.bubble-medium {
  width: 220px;
  height: 220px;
  font-size: 1rem;
}

.bubble-small {
  width: 180px;
  height: 180px;
  font-size: 0.9rem;
}

.bubble-1 {
  top: 50px;
  left: 10%;
}

.bubble-2 {
  top: 100px;
  right: 15%;
}

.bubble-3 {
  bottom: 100px;
  left: 20%;
}

.bubble-4 {
  bottom: 50px;
  right: 10%;
}

.bubble-5 {
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
}

.testimonial-section {
  background: linear-gradient(135deg, #e0f2fe 0%, #ddd6fe 100%);
  position: relative;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.3)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
}

.testimonial-text {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-graphite);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-primary);
}

.faq-section {
  position: relative;
  padding: 5rem 0;
}

.faq-bubble {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(158, 197, 254, 0.3) 100%);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.faq-bubble:hover {
  transform: translateX(10px);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--color-graphite);
  opacity: 0.85;
  line-height: 1.7;
}

.cta-section {
  background: var(--gradient-accent);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: -200px;
  left: -100px;
}

.cta-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  bottom: -150px;
  right: -50px;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-primary);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.btn-white:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
  color: var(--color-primary);
}

footer {
  background: var(--gradient-footer);
  color: var(--color-white);
  padding: 3rem 0 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cookie {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn-cookie:hover {
  transform: scale(1.05);
}

.btn-accept {
  background: var(--gradient-button);
  color: var(--color-white);
}

.btn-decline {
  background: #e5e7eb;
  color: var(--color-graphite);
}

.page-header {
  background: var(--gradient-accent);
  padding: 5rem 0 3rem;
  text-align: center;
  color: var(--color-white);
  position: relative;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
}

.content-section {
  padding: 4rem 0;
}

.content-block {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
}

.content-block h2 {
  color: var(--color-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.content-block h3 {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 600;
}

.content-block p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--color-graphite);
}

.content-block ul,
.content-block ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.content-block li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.form-control {
  border-radius: 12px;
  border: 2px solid #e5e7eb;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.form-label {
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.thank-you-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .bubble-container {
    min-height: auto;
  }

  .bubble {
    position: relative;
    margin: 1rem auto;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .bubble-large,
  .bubble-medium,
  .bubble-small {
    width: 250px;
    height: 250px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .btn-cookie {
    flex: 1;
  }
}
