:root {
  --color-primary: #7c3aed;
  --color-primary-dark: #6d28d9;
  --color-secondary: #ec4899;
  --color-background: #ffffff;
  --color-surface: #f9fafb;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-border: #e5e7eb;
  --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);
}

* {
  box-sizing: border-box;
}

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

.navbar {
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 700;
}

.navbar-brand:hover {
  color: var(--color-primary-dark);
}

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

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

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

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

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

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

.hero-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

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

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

.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  padding: 4rem 0;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-header .lead {
  font-size: 1.25rem;
  opacity: 0.95;
}

section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--color-surface);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.25rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.info-card,
.value-card,
.method-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover,
.value-card:hover,
.method-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

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

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.feature-list li:last-child {
  border-bottom: none;
}

.benefit-item,
.approach-item {
  margin-bottom: 2rem;
}

.benefit-item h4,
.approach-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  height: 100%;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

.concern-card {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: white;
  border-radius: 16px;
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.cta-section h2 {
  color: white;
}

.cta-section .lead {
  color: rgba(255, 255, 255, 0.95);
}

.cta-section .btn-primary {
  background-color: white;
  color: var(--color-primary);
  border-color: white;
}

.cta-section .btn-primary:hover {
  background-color: var(--color-surface);
  border-color: var(--color-surface);
  color: var(--color-primary-dark);
}

.cta-section .btn-outline-primary {
  color: white;
  border-color: white;
}

.cta-section .btn-outline-primary:hover {
  background-color: white;
  color: var(--color-primary);
}

.service-detail {
  padding: 4rem 0;
}

.service-subtitle {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
}

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

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

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

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

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

.contact-info-item h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-form-container {
  background: var(--color-surface);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

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

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

.form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.required {
  color: var(--color-secondary);
}

.faq-section {
  padding: 4rem 0;
}

.faq-item {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item h4 {
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.thank-you-section {
  padding: 5rem 0;
  text-align: center;
}

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

.thank-you-content {
  background: var(--color-surface);
  padding: 3rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.next-steps,
.meanwhile {
  margin-top: 2.5rem;
}

.button-group {
  margin-top: 1.5rem;
}

.button-group .btn {
  margin: 0.5rem;
}

.policy-content {
  padding: 2rem 0 4rem;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.policy-section h3 {
  color: var(--color-text);
  margin-top: 1.5rem;
}

.policy-section ul,
.disclaimer-list {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.location-info,
.hours-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.footer {
  background: var(--color-text);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h4,
.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

.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: white;
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 2rem 0 1rem;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  border-top: 3px solid var(--color-primary);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--color-primary);
  font-weight: 600;
}

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

  .page-header h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 2rem;
  }

  .navbar-collapse {
    margin-top: 1rem;
  }

  .nav-link {
    padding: 0.5rem 0;
  }
}

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

  .page-header h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  section {
    padding: 2rem 0;
  }

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

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

  .cookie-banner .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .cookie-banner .col-lg-4 {
    margin-top: 1rem;
  }
}
