:root {
  --primary-purple: #6b46c1;
  --primary-purple-dark: #553c9a;
  --primary-purple-light: #9f7aea;
  --text-dark: #1a202c;
  --text-gray: #4a5568;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.header-main {
  padding-top: 70px;
}

.navbar {
  padding: 1rem 0;
}

.brand-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-purple);
  text-decoration: none;
}

.brand-logo:hover {
  color: var(--primary-purple-dark);
  text-decoration: none;
}

.brand-name {
  color: var(--primary-purple);
}

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

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

.hero-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

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

.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--bg-white);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-purple-dark);
  border-color: var(--primary-purple-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-primary {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.feature-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

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

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

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--text-gray);
  line-height: 1.6;
}

.benefit-item {
  padding: 1.5rem;
  background: var(--bg-white);
  border-left: 4px solid var(--primary-purple);
  border-radius: 0.25rem;
  box-shadow: var(--shadow-sm);
}

.benefit-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.benefit-text {
  color: var(--text-gray);
}

.advantage-card {
  padding: 2rem 1rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  box-shadow: var(--shadow-md);
}

.advantage-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple-light);
  margin-bottom: 1rem;
}

.advantage-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.advantage-text {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.service-preview-card {
  background: var(--bg-white);
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.service-preview-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-preview-content {
  padding: 2rem;
}

.service-preview-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.service-preview-text {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.service-preview-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-preview-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
}

.service-preview-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: 700;
}

.benefit-audience-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.audience-list {
  list-style: none;
  padding-left: 0;
}

.audience-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
  line-height: 1.6;
}

.audience-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: 700;
}

.testimonial-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-text {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--text-dark);
  font-weight: 600;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.final-cta {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  color: var(--bg-white);
}

.cta-box {
  text-align: center;
  padding: 3rem 2rem;
}

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

.cta-text {
  font-size: 1.125rem;
  color: var(--bg-white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--bg-white);
  opacity: 0.8;
}

.cta-section .cta-box {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  border-radius: 0.5rem;
  padding: 3rem 2rem;
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
}

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

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding-left: 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(--primary-purple-light);
}

.footer-contact {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

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

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

.footer-legal a:hover {
  color: var(--primary-purple-light);
}

.footer-copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-top: 1rem;
}

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

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  margin: 0;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--primary-purple);
  text-decoration: underline;
}

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

.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  text-align: center;
}

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

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

.about-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: all 0.3s ease;
}

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

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

.value-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.value-text {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.6;
}

.approach-card {
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

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

.approach-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.commitment-item {
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.commitment-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.commitment-text {
  color: var(--text-gray);
  line-height: 1.6;
}

.location-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.location-details {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  border-left: 4px solid var(--primary-purple);
}

.location-details p {
  margin-bottom: 0.5rem;
  color: var(--text-gray);
}

.category-header {
  padding: 2rem 0;
}

.category-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-purple);
}

.category-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
}

.service-item {
  padding: 2rem 0;
}

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

.service-description {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {
  margin-top: 1.5rem;
}

.features-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.features-list {
  list-style: none;
  padding-left: 0;
}

.features-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
  line-height: 1.6;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-purple);
  font-weight: 700;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

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

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.step-text {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.contact-intro {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

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

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

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.25);
}

.form-check-label {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.form-check-label a {
  color: var(--primary-purple);
}

.form-note {
  color: var(--text-light);
  font-size: 0.875rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.info-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.info-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 0;
}

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

.faq-item {
  padding: 1.5rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.faq-question {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 0;
}

.thank-you-section {
  padding: 8rem 0 4rem;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-content {
  padding: 3rem;
  background: var(--bg-white);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-purple);
  color: var(--bg-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(--text-dark);
  margin-bottom: 1.5rem;
}

.thank-you-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.thank-you-details {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 0.5rem;
  margin-top: 2rem;
}

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

.next-step {
  text-align: center;
}

.next-step .step-number {
  width: 50px;
  height: 50px;
  font-size: 1.25rem;
}

.next-step .step-text {
  color: var(--text-gray);
  font-size: 0.9rem;
}

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

.thank-you-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.contact-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-details {
  color: var(--text-gray);
  line-height: 1.8;
}

.legal-content {
  background: var(--bg-white);
}

.legal-text {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.legal-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-heading:first-child {
  margin-top: 0;
}

.legal-subheading {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-purple);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

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

.legal-text a {
  color: var(--primary-purple);
  text-decoration: underline;
}

.legal-text a:hover {
  color: var(--primary-purple-dark);
}

.disclaimer-notice {
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.disclaimer-notice h3 {
  color: #856404;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-notice p {
  color: #856404;
  margin-bottom: 0;
}

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

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

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

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

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

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 3rem 0;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .page-header {
    padding: 6rem 0 3rem;
  }

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

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

  .thank-you-content {
    padding: 2rem 1rem;
  }

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

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

  .footer-legal a {
    display: block;
    margin: 0.5rem 0;
  }
}
