:root {
  --primary-color: #dc3545;
  --primary-dark: #c82333;
  --text-dark: #1a1a1a;
  --text-medium: #4a4a4a;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
}

* {
  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;
  font-size: 16px;
}

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  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: var(--primary-color);
}

.hero-section {
  padding: 80px 0;
  background-color: var(--bg-light);
}

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

.hero-text {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

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

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

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

section {
  padding: 60px 0;
}

.why-section,
.benefits-section,
.products-section,
.services-section,
.target-section,
.testimonials-section,
.about-content,
.about-services,
.about-commitment,
.services-intro,
.services-mens,
.services-womens,
.consultation-process,
.products-intro,
.products-mens,
.products-womens,
.product-info,
.contact-section,
.thank-you-section,
.legal-content {
  padding: 60px 0;
}

.feature-card,
.service-card,
.value-card,
.target-card {
  padding: 2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card h3,
.service-card h4,
.value-card h4,
.target-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.category-card,
.service-detail-card,
.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover,
.service-detail-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-content,
.card-content {
  padding: 2rem;
}

.category-content h3,
.card-content h3 {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

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

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

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

.testimonial-card {
  background: var(--bg-white);
  padding: 2rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  height: 100%;
}

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

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

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

.cta-title {
  color: var(--bg-white);
  margin-bottom: 1rem;
}

.cta-text {
  color: var(--bg-white);
  opacity: 0.95;
  margin-bottom: 2rem;
}

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

.cta-section .btn-primary:hover,
.services-cta .btn-primary:hover,
.products-cta .btn-primary:hover {
  background-color: var(--bg-light);
  border-color: var(--bg-light);
}

.footer {
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 60px 0 30px;
}

.footer h5 {
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.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: var(--primary-color);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2rem;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
  color: var(--bg-white);
}

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

.page-header {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

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

.page-header .lead {
  font-size: 1.25rem;
  color: var(--text-medium);
}

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

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

.service-features li:before,
.product-features ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.process-step {
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  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 1.5rem;
}

.contact-info-card {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

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

.contact-info-card a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-info-card a:hover {
  text-decoration: underline;
}

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

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.thank-you-content {
  padding: 3rem 0;
}

.thank-you-content h1 {
  color: var(--primary-color);
}

.next-step {
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 8px;
  height: 100%;
}

.next-step h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

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

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-medium);
}

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

.legal-content p {
  margin-bottom: 1rem;
}

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

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

  .hero-section {
    padding: 50px 0;
  }

  section {
    padding: 40px 0;
  }

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