:root {
  --color-cream: #faf7f0;
  --color-beige: #f5efe6;
  --color-light-peach: #ffe8d9;
  --color-dark-blue: #2c3e50;
  --color-mint: #4ecdc4;
  --color-coral: #ff6b6b;
  --color-orange: #ffa07a;
  --color-yellow: #ffd93d;
  --color-text: #2c3e50;
  --color-text-light: #5d6d7e;
  --gradient-primary: linear-gradient(135deg, #faf7f0 0%, #f5efe6 100%);
  --gradient-accent: linear-gradient(135deg, #4ecdc4 0%, #45b7aa 100%);
  --gradient-warm: linear-gradient(135deg, #ffa07a 0%, #ffd93d 100%);
  --gradient-coral: linear-gradient(135deg, #ff6b6b 0%, #ffa07a 100%);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--color-text);
  background: var(--gradient-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

.navbar {
  padding: 1.5rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.bg-white {
  background-color: white !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar.fixed-top {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--color-text) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-mint) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  overflow: hidden;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}

.bubble-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-accent);
  top: -100px;
  right: -100px;
}

.bubble-2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-coral);
  bottom: -50px;
  left: -50px;
}

.bubble-3 {
  width: 200px;
  height: 200px;
  background: var(--gradient-warm);
  top: 50%;
  right: 15%;
}

.bubble-cta-1 {
  width: 250px;
  height: 250px;
  background: var(--gradient-accent);
  top: -50px;
  left: -50px;
}

.bubble-cta-2 {
  width: 180px;
  height: 180px;
  background: var(--gradient-coral);
  bottom: -40px;
  right: -40px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-dark-blue);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-warm);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 160, 122, 0.3);
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 160, 122, 0.4);
  color: white;
  text-decoration: none;
}

.content-section {
  background: white;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 1.5rem;
}

.floating-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.rounded-image {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(2deg);
}

.rounded-image-left {
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
}

.gradient-section {
  background: var(--gradient-primary);
}

.principle-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principle-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin-bottom: 1.5rem;
}

.principle-card h3 {
  font-size: 1.5rem;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
  font-weight: 600;
}

.bubble-section {
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.fb-1 {
  width: 250px;
  height: 250px;
  background: var(--gradient-accent);
  top: 10%;
  right: 5%;
}

.fb-2 {
  width: 180px;
  height: 180px;
  background: var(--gradient-coral);
  bottom: 15%;
  left: 8%;
}

.fb-3 {
  width: 150px;
  height: 150px;
  background: var(--gradient-warm);
  top: 60%;
  right: 20%;
}

.pattern-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pattern-card h3 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.text-link {
  color: var(--color-mint);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.text-link:hover {
  color: var(--color-coral);
  text-decoration: none;
}

.centered-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.image-section {
  background: var(--color-beige);
}

.image-container {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

.info-block {
  background: var(--color-cream);
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--color-mint);
}

.info-block h4 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--gradient-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step-card h4 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.quote-section {
  background: var(--gradient-primary);
}

.quote-card {
  padding: 2rem;
}

.quote-bubble {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

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

.quote-author {
  font-weight: 600;
  color: var(--color-mint);
  font-size: 1.1rem;
}

.daily-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  border-top: 4px solid var(--color-coral);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.daily-card h4 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.example-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.example-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.example-card h4 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-section {
  background: var(--color-cream);
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.participant-name {
  font-weight: 600;
  color: var(--color-mint);
  margin-top: 1rem;
}

.faq-section {
  background: white;
}

.faq-bubble {
  background: var(--color-cream);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid var(--color-mint);
}

.faq-bubble h4 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-section {
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
}

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

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

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-mint);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--color-mint);
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.3);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.btn-cookie-accept {
  background: var(--gradient-warm);
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 0.5rem;
}

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

.btn-cookie-settings {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-settings:hover {
  background: var(--color-text);
  color: white;
}

.page-hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-primary);
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-light);
}

.concept-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.principle-block {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  border-top: 4px solid var(--color-mint);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.principle-block h3 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.progression-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.progression-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 1rem;
}

.progression-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin: 0 auto 1rem;
}

.progression-connector {
  width: 100px;
  height: 3px;
  background: var(--gradient-accent);
  opacity: 0.5;
}

.progression-step h4 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.instructor-section {
  background: var(--color-cream);
}

.instructor-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.instructor-card h4 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

.concept-section {
  position: relative;
  background: var(--gradient-primary);
  overflow: hidden;
}

.contact-info-card,
.contact-form-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-detail h5 {
  color: var(--color-dark-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-detail a {
  color: var(--color-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail a:hover {
  color: var(--color-coral);
}

.contact-note {
  background: var(--color-cream);
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid var(--color-coral);
}

.form-control {
  border: 2px solid var(--color-beige);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-mint);
  box-shadow: 0 0 0 0.2rem rgba(78, 205, 196, 0.1);
}

.form-check-input:checked {
  background-color: var(--color-mint);
  border-color: var(--color-mint);
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
}

.thank-you-card {
  background: white;
  padding: 4rem;
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.check-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: white;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.2rem;
  color: var(--color-text-light);
}

.legal-page {
  min-height: 70vh;
  background: white;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-dark-blue);
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--color-text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark-blue);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--color-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-content a:hover {
  color: var(--color-coral);
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

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

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

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

  .progression-connector {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .bubble-1,
  .bubble-2,
  .bubble-3 {
    opacity: 0.2;
  }
}

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

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

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

  .cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .quote-text {
    font-size: 1.2rem;
  }

  .floating-card,
  .centered-card {
    padding: 1.5rem;
  }

  .image-container {
    height: 250px;
  }

  .text-lg-right {
    text-align: center !important;
  }

  .btn-cookie-accept,
  .btn-cookie-settings {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}
