:root {
  --color-cream: #fbf7f4;
  --color-blue-light: #e8f4f8;
  --color-mint: #e0f2f1;
  --color-pink: #ffb6c1;
  --color-lavender: #e6d5f5;
  --color-honey: #f4c96b;
  --color-graphite: #2d3436;
  --color-white: #ffffff;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #bdbdbd;
}
* {
  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-graphite);
  line-height: 1.6;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-blue-light) 50%, var(--color-mint) 100%);
  background-attachment: fixed;
}
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-link {
  color: var(--color-graphite);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-lavender);
}
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: url("../images/hero-background.jpg") center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(230, 213, 245, 0.8) 0%,
    rgba(255, 182, 193, 0.6) 50%,
    rgba(244, 201, 107, 0.5) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
}
.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-graphite);
  margin-bottom: 2rem;
  max-width: 600px;
}
.btn-hero,
.btn-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink));
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 213, 245, 0.4);
}
.btn-hero:hover,
.btn-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(230, 213, 245, 0.6);
  color: var(--color-white);
  text-decoration: none;
}
.practices-section,
.philosophy-section,
.faq-section,
.testimonials-section,
.content-section,
.principles-section,
.guides-section,
.approach-section,
.contact-section {
  padding: 5rem 0;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: 2rem;
  position: relative;
}
.practices-grid {
  margin-top: 3rem;
}
.practice-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  transform: translateY(0);
}
.practice-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(230, 213, 245, 0.3);
}
.practice-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.practice-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}
.practice-card p {
  color: #666;
  margin-bottom: 0;
}
.philosophy-content {
  margin-top: 2rem;
}
.philosophy-item {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--color-lavender);
}
.philosophy-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}
.philosophy-item p {
  color: #666;
  margin-bottom: 0;
}
.instructor-section {
  padding: 5rem 0;
  position: relative;
  background: url("../images/instructor-background.jpg") center / cover no-repeat;
  margin: 4rem 0;
}
.instructor-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 213, 245, 0.9), rgba(255, 182, 193, 0.8));
}
.instructor-quote {
  position: relative;
  z-index: 2;
  background: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.instructor-quote p {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--color-graphite);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.instructor-quote footer {
  font-size: 1rem;
  color: #666;
  font-style: normal;
}
.faq-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.faq-card:hover {
  box-shadow: 0 5px 25px rgba(230, 213, 245, 0.25);
}
.faq-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}
.faq-card p {
  color: #666;
  margin-bottom: 0;
}
.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 182, 193, 0.2);
}
.testimonial-card p {
  font-style: italic;
  color: #666;
  margin-bottom: 1rem;
}
.testimonial-card footer {
  font-weight: 600;
  color: var(--color-graphite);
  font-style: normal;
}
.cta-section {
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink), var(--color-honey));
  padding: 5rem 0;
  margin: 4rem 0;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}
.cta-section h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-section .lead {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn-cta {
  background: var(--color-white);
  color: var(--color-lavender);
}
.btn-cta:hover {
  background: var(--color-white);
  color: var(--color-pink);
}
.footer {
  background: linear-gradient(135deg, var(--color-graphite), #1a1d1f);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}
.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.footer h5 {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--color-lavender);
}
.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2rem;
  font-size: 0.9rem;
}
.page-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink));
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.page-hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.page-hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-white);
}
.principle-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}
.principle-card:hover {
  box-shadow: 0 5px 25px rgba(230, 213, 245, 0.25);
}
.principle-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}
.principle-card p {
  color: #666;
  margin-bottom: 0;
}
.quote-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--color-lavender);
}
.quote-card blockquote p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}
.quote-card blockquote footer {
  color: #666;
  font-style: normal;
  font-weight: 600;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.approach-item {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.approach-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 25px rgba(255, 182, 193, 0.2);
}
.approach-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}
.approach-item p {
  color: #666;
  margin-bottom: 0;
}
.contact-info {
  margin-top: 2rem;
}
.contact-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}
.contact-item p {
  color: #666;
  margin-bottom: 0;
}
.contact-form-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.form-control {
  border: 2px solid var(--color-gray-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}
.form-control:focus {
  border-color: var(--color-lavender);
  box-shadow: 0 0 0 0.2rem rgba(230, 213, 245, 0.25);
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink));
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 15px rgba(230, 213, 245, 0.4);
}
.btn-outline-primary {
  border: 2px solid var(--color-lavender);
  color: var(--color-lavender);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background: var(--color-lavender);
  color: var(--color-white);
}
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
.thank-you-card {
  background: var(--color-white);
  padding: 4rem 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
.thank-you-icon {
  font-size: 4rem;
  color: var(--color-lavender);
  margin-bottom: 1.5rem;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink));
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.thank-you-card h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: 1rem;
}
.thank-you-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.legal-section {
  padding: 8rem 0 4rem;
}
.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
}
.legal-updated {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.legal-content {
  background: var(--color-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.legal-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-graphite);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}
.legal-content p,
.legal-content ul {
  color: #666;
  margin-bottom: 1rem;
}
.legal-content ul {
  padding-left: 2rem;
}
.legal-content li {
  margin-bottom: 0.5rem;
}
.legal-content a {
  color: var(--color-lavender);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--color-pink);
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}
.cookie-consent.show {
  display: block;
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-cookie-settings {
  background: var(--color-gray-light);
  color: var(--color-graphite);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cookie-settings:hover {
  background: var(--color-gray-medium);
}
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--color-lavender), var(--color-pink));
  color: var(--color-white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-cookie-accept:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(230, 213, 245, 0.4);
}
.cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
}
.cookie-settings-modal.show {
  display: flex;
}
.cookie-settings-content {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.cookie-settings-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-graphite);
  margin-bottom: 1.5rem;
}
.cookie-category {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--color-gray-light);
  border-radius: 10px;
}
.cookie-category label {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: var(--color-graphite);
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-category p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
  padding-left: 1.75rem;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .page-hero-title {
    font-size: 2.3rem;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-buttons {
    width: 100%;
    justify-content: stretch;
  }
  .btn-cookie-settings,
  .btn-cookie-accept {
    flex: 1;
  }
  .thank-you-actions {
    flex-direction: column;
  }
  .thank-you-actions .btn {
    width: 100%;
  }
}
