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

.navbar {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-text {
  color: #1a73e8;
  font-weight: 700;
  font-size: 1.75rem;
}

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

.nav-link:hover {
  color: #1a73e8;
}

.nav-link.active {
  color: #1a73e8;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #555555;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, #1a73e8 0%, #0d5bbd 100%);
  color: #ffffff;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-header p {
  font-size: 1.15rem;
  opacity: 0.95;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.lead-text {
  font-size: 1.15rem;
  color: #555555;
  line-height: 1.7;
}

.btn-primary {
  background-color: #1a73e8;
  border-color: #1a73e8;
  color: #ffffff;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0d5bbd;
  border-color: #0d5bbd;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
}

.btn-outline-primary {
  border-color: #1a73e8;
  color: #1a73e8;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1a73e8;
  border-color: #1a73e8;
  color: #ffffff;
}

.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  border-radius: 6px;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #ffffff;
}

.rounded-lg {
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.problem-card:hover,
.outcome-card:hover,
.value-card:hover,
.feature-card:hover,
.expectation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card-title-men {
  color: #1a73e8;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-title-women {
  color: #0d5bbd;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.problem-list li {
  padding: 0.75rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #555555;
}

.problem-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-weight: 700;
}

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

.benefit-item h4,
.step-card h3,
.outcome-card h3,
.value-card h3,
.feature-card h3 {
  color: #1a1a1a;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-item p,
.step-card p,
.outcome-card p,
.value-card p,
.feature-card p {
  color: #555555;
  line-height: 1.7;
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a73e8 0%, #0d5bbd 100%);
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-content h4 {
  color: #1a73e8;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.service-content ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555555;
}

.service-content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #1a73e8;
  font-weight: 700;
}

.service-note {
  color: #6c757d;
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.testimonial-text {
  color: #555555;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
  color: #1a73e8;
  font-weight: 600;
  font-size: 0.95rem;
}

.contact-info-box,
.hours-box,
.info-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #1a73e8;
}

.contact-info-box h4,
.hours-box h4,
.info-box h4 {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.disclaimer-box p {
  color: #856404;
  line-height: 1.7;
}

.form-control {
  border-radius: 6px;
  border: 1px solid #d0d0d0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #1a73e8;
  box-shadow: 0 0 0 0.2rem rgba(26, 115, 232, 0.15);
}

.form-group label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: 400;
  color: #555555;
}

.small-text {
  font-size: 0.875rem;
  color: #6c757d;
}

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

.thank-you-content {
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.success-icon {
  display: inline-block;
}

.next-steps-list {
  text-align: left;
  padding-left: 1.5rem;
}

.next-steps-list li {
  padding: 0.5rem 0;
  color: #555555;
  line-height: 1.7;
}

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

.legal-content h2 {
  color: #1a1a1a;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: #1a73e8;
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: #555555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.legal-content ul li {
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
}

.footer-brand {
  color: #1a73e8;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer h4 {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer p {
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

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

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #1a73e8;
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: none;
}

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

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

.cookie-content p {
  flex: 1;
  margin: 0 1rem 0 0;
  color: #555555;
  font-size: 0.95rem;
}

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

.cookie-link {
  color: #1a73e8;
  text-decoration: underline;
  font-size: 0.95rem;
}

.alert {
  border-radius: 8px;
  padding: 1.25rem;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #17a2b8;
  color: #0c5460;
}

.table {
  margin-top: 1.5rem;
}

.table thead th {
  background-color: #1a73e8;
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.table td,
.table th {
  padding: 1rem;
  vertical-align: top;
}

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

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

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

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

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

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-buttons button,
  .cookie-buttons a {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 120px 0 60px;
  }

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

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

  .page-header {
    padding: 120px 0 50px;
  }

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

  .ml-3 {
    margin-left: 0;
    margin-top: 1rem;
  }
}
