:root {
  --primary-color: #7c3aed;
  --primary-dark: #6d28d9;
  --primary-light: #a78bfa;
  --secondary-color: #1f2937;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --background-gray: #f9fafb;
  --border-color: #e5e7eb;
  --success: #10b981;
}

* {
  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-primary);
  line-height: 1.6;
  background-color: var(--background);
}

.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

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

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

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

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

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

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

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

.btn-outline-secondary {
  border-color: var(--text-secondary);
  color: var(--text-secondary);
  font-weight: 600;
}

.btn-outline-secondary:hover {
  background-color: var(--text-secondary);
  border-color: var(--text-secondary);
  color: white;
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
  font-weight: 600;
}

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

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

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

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

.hero-section img {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

.problems-section {
  padding: 80px 0;
  background-color: var(--background-gray);
}

.problem-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  height: 100%;
}

.men-card {
  border-top: 4px solid var(--primary-color);
}

.women-card {
  border-top: 4px solid #ec4899;
}

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

.problem-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.problem-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
}

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

.why-individual-section {
  padding: 80px 0;
}

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

.benefit-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: var(--text-secondary);
}

.how-help-section {
  padding: 80px 0;
  background-color: var(--background-gray);
}

.help-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s;
}

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

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

.help-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.help-card p {
  color: var(--text-secondary);
}

.method-section {
  padding: 80px 0;
}

.method-step {
  margin-bottom: 2rem;
}

.method-step h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.method-step p {
  color: var(--text-secondary);
}

.results-section {
  padding: 80px 0;
  background-color: var(--background-gray);
}

.result-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  height: 100%;
}

.result-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.result-card p {
  color: var(--text-secondary);
}

.testimonials-section {
  padding: 80px 0;
}

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

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.cta-section .btn-primary:hover {
  background-color: #f3f4f6;
}

.cta-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer {
  background-color: var(--secondary-color);
  color: white;
  padding: 60px 0 20px;
}

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

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

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

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

.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

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

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
}

.content-section {
  padding: 80px 0;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s;
}

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

.men-service {
  border-top: 4px solid var(--primary-color);
}

.women-service {
  border-top: 4px solid #ec4899;
}

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

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

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

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

.service-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.consultation-info {
  background: var(--background-gray);
  padding: 3rem;
  border-radius: 12px;
}

.contact-info-card {
  background: var(--background-gray);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.form-control {
  border-color: var(--border-color);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.25);
}

.thank-you-section {
  padding: 140px 0 80px;
}

.thank-you-content {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

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

.thank-you-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
}

.thank-you-info {
  background: var(--background-gray);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

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

.next-step h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.next-step p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

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

.legal-content {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

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

.legal-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content ul {
  margin-bottom: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.legal-content p {
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 0;
  z-index: 9999;
  display: none;
}

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

.cookie-text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.cookie-settings {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  z-index: 10000;
}

.cookie-settings h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.5rem;
}

.cookie-option label {
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  cursor: pointer;
}

.cookie-option input[type="checkbox"] {
  margin-right: 0.75rem;
  width: 20px;
  height: 20px;
}

.cookie-option p {
  margin: 0.5rem 0 0 2rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

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

.value-item h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.difference-card {
  background: var(--background-gray);
  padding: 2rem;
  border-radius: 12px;
  height: 100%;
}

.difference-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.difference-card p {
  color: var(--text-secondary);
}

.location-info {
  background: var(--background-gray);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
}

.rounded-lg {
  border-radius: 12px;
}

.rounded {
  border-radius: 8px;
}

.lead {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--text-secondary);
}

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

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

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

  .hero-section {
    padding: 100px 0 60px;
  }

  .navbar-brand {
    font-size: 1.25rem;
  }

  .cookie-banner .text-right {
    text-align: left !important;
    margin-top: 1rem;
  }
}

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

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

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

  .page-header {
    padding: 100px 0 40px;
  }

  .content-section {
    padding: 60px 0;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

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