body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: #d32f2f !important;
}

.nav-link {
  color: #333 !important;
  font-weight: 500;
  margin-left: 1.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #d32f2f !important;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background-color: #b71c1c;
  border-color: #b71c1c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
}

.btn-outline-primary {
  color: #d32f2f;
  border-color: #d32f2f;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

.hero-section h1 {
  color: #1a1a1a;
  font-weight: 700;
}

.hero-section .lead {
  color: #555;
  font-size: 1.15rem;
}

.benefits-section,
.advantages-section,
.consultation-benefits-section,
.services-overview-section,
.who-section,
.testimonials-section,
.faq-section {
  padding: 80px 0;
}

.benefits-section {
  background-color: #fafafa;
}

.benefit-card,
.advantage-item,
.service-card,
.who-card,
.testimonial-card,
.faq-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.benefit-card h3,
.advantage-item h4,
.who-card h4 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
}

.service-card h3 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.benefits-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

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

.testimonial-card {
  background: #f8f8f8;
  border-left: 4px solid #d32f2f;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h4 {
  color: #d32f2f;
  font-weight: 600;
}

.final-cta-section,
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
}

.final-cta-section h2,
.cta-section h2 {
  color: white;
}

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

.footer-section {
  background-color: #1a1a1a;
  color: #f5f5f5;
  padding: 60px 0 20px;
}

.footer-section h5 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
  display: none;
}

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

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

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

.cookie-content a {
  color: #d32f2f;
}

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

.page-header {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
  color: white;
  text-align: center;
}

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

.page-header .lead {
  color: rgba(255, 255, 255, 0.95);
}

.about-intro-section,
.mission-section,
.values-section,
.approach-section,
.commitment-section,
.why-nutrition-section,
.location-section,
.services-intro-section,
.service-detail-section,
.consultation-process-section,
.service-benefits-section {
  padding: 80px 0;
}

.mission-section {
  background-color: #fafafa;
}

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

.value-card h3 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1rem;
}

.approach-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.approach-item h3 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.commitment-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

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

.location-info {
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
}

.location-info h3 {
  color: #d32f2f;
  font-weight: 600;
}

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

.service-features li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
}

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

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

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

.process-step h3 {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.benefit-item h4 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.contact-info-card {
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 2rem;
}

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

.contact-item h4 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: #1a1a1a;
  text-decoration: none;
}

.contact-item a:hover {
  color: #d32f2f;
}

.info-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #d32f2f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.info-box h4 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1rem;
}

.faq-contact-section {
  padding: 80px 0;
  background-color: #fafafa;
}

.faq-contact-section h4 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.form-control:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 0.2rem rgba(211, 47, 47, 0.25);
}

.thank-you-section {
  padding: 120px 0 80px;
  text-align: center;
}

.thank-you-icon {
  font-size: 5rem;
  color: #d32f2f;
  margin-bottom: 2rem;
}

.thank-you-section h1 {
  color: #1a1a1a;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.next-steps {
  background: #fafafa;
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  margin-top: 3rem;
}

.next-steps h3 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.policy-content h1 {
  color: #d32f2f;
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-content h2 {
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: #d32f2f;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

  .nav-link {
    margin-left: 0;
    margin-bottom: 0.5rem;
  }

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

  .cookie-buttons {
    justify-content: center;
  }
}

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

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

  .benefit-icon,
  .value-icon {
    font-size: 2.5rem;
  }
}

.additional-info-section {
  padding: 80px 0;
  background-color: #fafafa;
}

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

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

.step-box h4 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.info-message {
  background: #f8f8f8;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #d32f2f;
  margin-top: 3rem;
}

.contact-details {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.contact-details a {
  color: #d32f2f;
  text-decoration: none;
}

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

.prep-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.prep-item h4 {
  color: #d32f2f;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: #d32f2f;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

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

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

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

.legal-content a {
  color: #d32f2f;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

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

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

  .benefit-icon,
  .value-icon {
    font-size: 2.5rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .legal-content h3 {
    font-size: 1.25rem;
  }
}
