* {
  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: #212529;
  background-color: #ffffff;
}

.brand-name {
  font-size: 1.5rem;
  color: #ff6b35;
}

.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #212529;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: #ff6b35;
}

.btn-orange {
  background-color: #ff6b35;
  border-color: #ff6b35;
  color: #ffffff;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-orange:hover {
  background-color: #e55a28;
  border-color: #e55a28;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
}

.text-orange {
  color: #ff6b35;
}

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

.hero-section h1 {
  color: #212529;
}

.hero-section .lead {
  color: #495057;
}

.features-section {
  padding: 5rem 0;
}

.feature-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.benefits-section {
  padding: 5rem 0;
}

.benefit-item {
  padding: 1.5rem;
  background: #f8f9fa;
  border-left: 4px solid #ff6b35;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.benefit-item:hover {
  background: #fff5f2;
}

.advantages-section {
  padding: 5rem 0;
}

.advantage-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  height: 100%;
}

.services-preview-section {
  padding: 5rem 0;
}

.service-preview-card {
  padding: 2.5rem;
  background: #ffffff;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  height: 100%;
}

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

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

.service-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.target-audience-section {
  padding: 5rem 0;
}

.audience-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.audience-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.audience-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
  font-size: 1.2rem;
}

.testimonials-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.testimonial-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
  color: #ffffff;
}

.cta-section h2,
.cta-section .lead {
  color: #ffffff;
}

.cta-section .btn-orange {
  background-color: #ffffff;
  color: #ff6b35;
}

.cta-section .btn-orange:hover {
  background-color: #f8f9fa;
  color: #e55a28;
}

.footer {
  padding: 3rem 0 1rem;
}

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

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

.footer-links a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

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

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

.page-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.about-intro-section {
  padding: 5rem 0;
}

.values-section {
  padding: 5rem 0;
}

.value-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.approach-section {
  padding: 5rem 0;
}

.approach-card {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.why-choose-section {
  padding: 5rem 0;
}

.why-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

.disclaimer-box {
  padding: 2rem;
  background: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
}

.disclaimer-box a {
  color: #212529;
  font-weight: 600;
}

.services-intro {
  padding: 3rem 0;
}

.services-men-section {
  padding: 5rem 0;
}

.services-women-section {
  padding: 5rem 0;
}

.service-card {
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

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

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

.service-details li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.consultation-format-section {
  padding: 5rem 0;
}

.format-card {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  height: 100%;
}

.format-card ul {
  list-style: none;
  padding-left: 0;
}

.format-card ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.format-card ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: bold;
}

.process-section {
  padding: 5rem 0;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background-color: #ff6b35;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

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

.contact-info-card {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin-bottom: 1rem;
}

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

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

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

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: #28a745;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
}

.next-steps-box {
  padding: 3rem 2rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 2rem 0;
}

.step-icon {
  font-size: 2.5rem;
}

.submission-details {
  padding: 2rem;
  background: #e7f3ff;
  border-radius: 8px;
  margin: 2rem 0;
  text-align: left;
}

.policy-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.policy-content {
  padding: 3rem 0;
}

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

.policy-section h2 {
  color: #212529;
  margin-bottom: 1.5rem;
}

.policy-section h5 {
  color: #495057;
  margin-top: 1.5rem;
}

.policy-section ul {
  margin-top: 1rem;
}

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

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

  .hero-section h1 {
    font-size: 2rem;
  }

  .features-section,
  .benefits-section,
  .advantages-section,
  .services-preview-section,
  .target-audience-section,
  .testimonials-section,
  .about-intro-section,
  .values-section,
  .approach-section,
  .why-choose-section,
  .services-men-section,
  .services-women-section,
  .consultation-format-section,
  .process-section,
  .contact-section,
  .faq-section {
    padding: 3rem 0;
  }

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

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

  .display-4 {
    font-size: 2rem;
  }

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

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