:root {
  --color-cream: #faf7f2;
  --color-beige: #f5ede0;
  --color-peach: #ffb88c;
  --color-coral: #ff9b7c;
  --color-orange: #ff8c61;
  --color-yellow: #ffb347;
  --color-dark: #2d2d2d;
  --color-gray: #6b6b6b;
  --gradient-warm: linear-gradient(135deg, var(--color-beige) 0%, var(--color-cream) 100%);
  --gradient-accent: linear-gradient(135deg, var(--color-orange) 0%, var(--color-yellow) 100%);
  --gradient-coral: linear-gradient(135deg, var(--color-coral) 0%, var(--color-peach) 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-dark);
  line-height: 1.6;
  background-color: var(--color-cream);
  overflow-x: hidden;
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-brand:hover {
  opacity: 0.8;
}

.nav-link {
  color: var(--color-dark);
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

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

.nav-link.active {
  color: var(--color-orange);
}

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

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-coral);
  opacity: 0.3;
  z-index: 1;
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-accent);
  opacity: 0.15;
  z-index: 2;
}

.bubble-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
}

.bubble-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 10%;
}

.bubble-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 20%;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
}

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

.btn-gradient-large:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 140, 97, 0.3);
  color: white;
  text-decoration: none;
}

.btn-outline-large {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--color-orange);
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  border: 2px solid var(--color-orange);
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.btn-outline-large:hover {
  background: var(--color-orange);
  color: white;
  text-decoration: none;
}

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

.bg-light-gradient {
  background: var(--gradient-warm);
}

.bg-gradient-warm {
  background: linear-gradient(135deg, #fff5ee 0%, #ffe8d6 100%);
}

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

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--color-gray);
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--color-gray);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.img-diagonal {
  width: 100%;
  height: auto;
  border-radius: 20px;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.img-circle {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.img-rounded {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.principle-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  height: 100%;
}

.principle-card:hover {
  transform: translateY(-5px);
}

.card-bubble {
  position: absolute;
  width: 100px;
  height: 100px;
  background: var(--gradient-accent);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  opacity: 0.1;
}

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

.principle-card p {
  color: var(--color-gray);
  line-height: 1.7;
}

.floating-text-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.floating-text-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
  transition: transform 0.3s ease;
}

.floating-text-box:hover {
  transform: scale(1.05);
}

.integration-card {
  background: linear-gradient(135deg, white 0%, var(--color-beige) 100%);
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

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

.integration-card p {
  color: var(--color-gray);
  line-height: 1.7;
}

.awareness-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.awareness-item {
  position: relative;
  background: white;
  padding: 2rem 2rem 2rem 4rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.bubble-accent {
  position: absolute;
  width: 30px;
  height: 30px;
  background: var(--gradient-accent);
  border-radius: 50%;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.awareness-item p {
  color: var(--color-gray);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

.example-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.example-card:hover {
  transform: translateY(-8px);
}

.example-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.example-content h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.example-content p {
  color: var(--color-gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.link-gradient {
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.link-gradient:hover {
  opacity: 0.7;
  text-decoration: none;
}

.quote-section {
  padding: 5rem 0;
  background: var(--gradient-warm);
}

.quote-bubble {
  background: white;
  padding: 3rem;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.quote-bubble blockquote {
  margin: 0;
}

.quote-bubble p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-bubble cite {
  display: block;
  font-size: 1rem;
  font-style: normal;
  color: var(--color-orange);
  font-weight: 600;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  height: 100%;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.participant-name {
  display: block;
  font-weight: 600;
  color: var(--color-dark);
  font-style: normal;
}

.faq-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff5ee 0%, #ffe8d6 100%);
}

.faq-container {
  max-width: 1000px;
  margin: 3rem auto 0;
}

.faq-bubble {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

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

.faq-bubble p {
  color: var(--color-gray);
  line-height: 1.7;
  margin: 0;
}

.cta-section {
  padding: 6rem 0;
  position: relative;
  background: var(--gradient-warm);
  overflow: hidden;
}

.bubble-cta-1 {
  width: 250px;
  height: 250px;
  top: 10%;
  left: 10%;
}

.bubble-cta-2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 5%;
}

.cta-text {
  font-size: 1.2rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.concept-card {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.concept-bubble {
  position: absolute;
  width: 80px;
  height: 80px;
  background: var(--gradient-coral);
  border-radius: 50%;
  top: -20px;
  right: -20px;
  opacity: 0.15;
}

.concept-card h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.concept-card p {
  color: var(--color-gray);
  line-height: 1.7;
}

.principle-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.flow-item {
  flex: 1;
  min-width: 250px;
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin: 1rem;
  text-align: center;
}

.flow-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.flow-item h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.flow-item p {
  color: var(--color-gray);
  line-height: 1.7;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--color-orange);
}

.flow-arrow::before {
  content: "→";
}

.info-box {
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.info-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.info-box p {
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.instructor-approach {
  max-width: 900px;
  margin: 3rem auto 0;
}

.approach-item {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
}

.approach-item p {
  color: var(--color-gray);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.quote-bubble-large {
  background: white;
  padding: 4rem;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.quote-bubble-large blockquote {
  margin: 0;
}

.quote-bubble-large p {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-bubble-large cite {
  display: block;
  font-size: 1.1rem;
  font-style: normal;
  color: var(--color-orange);
  font-weight: 600;
}

.visual-metaphor {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.metaphor-section {
  text-align: center;
  background: white;
  padding: 2.5rem;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.metaphor-circle,
.metaphor-wave,
.metaphor-spiral {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--gradient-accent);
}

.metaphor-wave {
  border-radius: 50% 50% 0 0;
}

.metaphor-spiral {
  background: var(--gradient-coral);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.metaphor-section h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.metaphor-section p {
  color: var(--color-gray);
  line-height: 1.7;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--color-gray);
  line-height: 1.7;
}

.contact-form-container {
  background: white;
  padding: 3rem;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2rem;
}

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

.contact-form .form-control:focus {
  border-color: var(--color-orange);
  box-shadow: none;
}

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

.form-check-label {
  font-weight: 400;
  color: var(--color-gray);
}

.form-check-label a {
  color: var(--color-orange);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--gradient-warm);
  overflow: hidden;
}

.thank-you-content {
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 3rem;
}

.bubble-thank-1 {
  width: 200px;
  height: 200px;
  top: 15%;
  left: 10%;
}

.bubble-thank-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  right: 15%;
}

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

.thank-you-text {
  font-size: 1.3rem;
  color: var(--color-gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.legal-page {
  padding: 4rem 0;
  background: white;
}

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

.legal-date {
  font-size: 1rem;
  color: var(--color-gray);
  margin-bottom: 3rem;
  font-style: italic;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

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

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

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

.legal-content ul {
  color: var(--color-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-content a {
  color: var(--color-orange);
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.footer {
  background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
  color: white;
  padding: 4rem 0 2rem;
}

.footer h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

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

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

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

.footer-links a:hover {
  color: white;
}

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

.footer-legal {
  margin-bottom: 1rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 1rem;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  color: var(--color-gray);
  flex: 1;
  min-width: 250px;
}

.cookie-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-gradient {
  padding: 0.75rem 2rem;
  background: var(--gradient-accent);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.cookie-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
}

.cookie-link:hover {
  text-decoration: underline;
}

@media (max-width: 991px) {
  .flow-arrow {
    display: none;
  }
}

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

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

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

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

  .btn-gradient-large,
  .btn-outline-large {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }

  .bubble-1,
  .bubble-2,
  .bubble-3 {
    width: 150px;
    height: 150px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-gradient {
    width: 100%;
  }

  .principle-flow {
    flex-direction: column;
  }

  .flow-item {
    width: 100%;
  }
}

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

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

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

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

  .contact-form-container {
    padding: 2rem;
  }

  .quote-bubble {
    padding: 2rem;
  }

  .quote-bubble p {
    font-size: 1.1rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }
}
