:root {
  --cream: #fff8f0;
  --light-blue: #e8f4f8;
  --lavender: #e6e6fa;
  --purple: #8b7ab8;
  --deep-purple: #6b5b95;
  --gold: #d4af37;
  --light-gold: #f4e4c1;
  --charcoal: #2c3e50;
  --light-gray: #f5f7fa;
  --medium-gray: #95a5a6;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background: linear-gradient(135deg, var(--cream) 0%, var(--light-blue) 50%, var(--lavender) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--deep-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-link {
  color: var(--charcoal);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

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

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

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -76px;
  padding-top: 76px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 122, 184, 0.15) 0%,
    rgba(107, 91, 149, 0.1) 50%,
    rgba(212, 175, 55, 0.05) 100%
  );
  z-index: 1;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(230, 230, 250, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-slant {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: var(--white);
  clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--purple), var(--deep-purple));
  color: var(--white);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 122, 184, 0.3);
}

.btn-gradient:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(139, 122, 184, 0.4);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.05);
}

.intro-section {
  padding: 5rem 0 3rem;
  background: var(--white);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--charcoal), var(--deep-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description {
  font-size: 1.15rem;
  color: var(--charcoal);
  opacity: 0.85;
}

.cards-section {
  padding: 4rem 0;
  background: var(--white);
}

.info-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(139, 122, 184, 0.15);
}

.offset-card {
  margin-top: 2rem;
}

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

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

.info-card:hover .card-image {
  transform: scale(1.1);
}

.info-card .card-body {
  padding: 2rem;
}

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

.card-text {
  color: var(--charcoal);
  opacity: 0.8;
  margin-bottom: 1rem;
}

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

.card-link:hover {
  color: var(--deep-purple);
}

.quote-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--light-blue), var(--lavender));
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  margin: 4rem 0;
}

.quote-card {
  position: relative;
  padding: 3rem;
  border-radius: 20px;
  overflow: hidden;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 122, 184, 0.1), rgba(212, 175, 55, 0.05));
  z-index: 1;
}

.quote-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

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

.tips-section {
  padding: 5rem 0;
  background: var(--white);
}

.tips-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tip-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.tip-number {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--purple), var(--deep-purple));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.tip-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.tip-content p {
  color: var(--charcoal);
  opacity: 0.8;
}

.faq-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

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

.faq-item {
  padding: 1.5rem 0;
}

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

.faq-answer {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.8;
  line-height: 1.7;
}

.faq-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--lavender), transparent);
  margin: 1.5rem 0;
}

.testimonials-section {
  padding: 5rem 0;
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(139, 122, 184, 0.15);
}

.offset-testimonial {
  margin-top: 2rem;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.85;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--cream), var(--lavender));
}

.cta-card {
  position: relative;
  padding: 4rem 2rem;
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 122, 184, 0.15), rgba(212, 175, 55, 0.1));
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

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

.cta-text {
  font-size: 1.2rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 2rem;
}

.footer {
  position: relative;
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, var(--deep-purple), var(--purple));
  color: var(--white);
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  opacity: 0.9;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-contact {
  opacity: 0.9;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44, 62, 80, 0.98);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 1.5rem 0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
}

.cookie-content a {
  color: var(--light-gold);
  text-decoration: underline;
}

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

.cookie-buttons .btn {
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.95rem;
}

.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: -76px;
  padding-top: 76px;
  background: linear-gradient(135deg, var(--cream), var(--light-blue));
}

.page-hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--charcoal), var(--deep-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.25rem;
  color: var(--charcoal);
  opacity: 0.9;
}

.content-section {
  padding: 5rem 0 3rem;
  background: var(--white);
}

.content-text {
  font-size: 1.1rem;
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}

.philosophy-section {
  padding: 4rem 0;
  background: var(--light-gray);
}

.philosophy-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.values-section {
  padding: 5rem 0;
  background: var(--white);
}

.value-card {
  background: linear-gradient(135deg, var(--light-blue), var(--lavender));
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 122, 184, 0.2);
}

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

.value-text {
  color: var(--charcoal);
  opacity: 0.85;
}

.expert-quote-section {
  padding: 5rem 0;
  background: var(--light-gray);
}

.expert-quote-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.expert-image-wrapper {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(139, 122, 184, 0.2);
  margin: 0 auto;
}

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

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

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

.commitment-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-section {
  padding: 5rem 0;
  background: var(--white);
}

.contact-form .form-control {
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 122, 184, 0.15);
}

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

.contact-info-card {
  background: linear-gradient(135deg, var(--light-blue), var(--lavender));
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
}

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

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-item h5 {
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  color: var(--charcoal);
  opacity: 0.85;
  margin: 0;
}

.contact-note {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 15px;
  border-left: 4px solid var(--purple);
}

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, var(--cream), var(--light-blue));
}

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

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--purple), var(--deep-purple));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

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

.thank-you-text {
  font-size: 1.2rem;
  color: var(--charcoal);
  opacity: 0.85;
  margin-bottom: 1rem;
}

.thank-you-note {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.75;
  margin-bottom: 2.5rem;
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  padding: 8rem 0 4rem;
  background: var(--white);
}

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

.policy-date {
  font-size: 1rem;
  color: var(--medium-gray);
  margin-bottom: 3rem;
}

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

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

.policy-content p {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-content ul li {
  font-size: 1.05rem;
  color: var(--charcoal);
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--purple);
  text-decoration: underline;
}

.policy-content a:hover {
  color: var(--deep-purple);
}

.disclaimer-content .alert-box {
  background: linear-gradient(135deg, var(--light-blue), var(--lavender));
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid var(--purple);
  margin-bottom: 2rem;
}

.disclaimer-content .alert-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep-purple);
  margin-top: 0;
  margin-bottom: 1rem;
}

.disclaimer-content .alert-box p {
  margin-bottom: 0;
}

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

  .page-hero-title {
    font-size: 2.5rem;
  }

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

  .offset-card,
  .offset-testimonial {
    margin-top: 0;
  }

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

  .cookie-buttons {
    justify-content: center;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
  }
}

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

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

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

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

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

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

  .thank-you-title {
    font-size: 2rem;
  }
}
