:root {
  --primary-red: #dc3545;
  --dark-red: #c82333;
  --text-dark: #212529;
  --text-light: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  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;
  background-color: var(--white);
}

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

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

.btn-outline-primary {
  color: var(--primary-red);
  border-color: var(--primary-red);
}

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

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

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

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

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

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

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

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

.hero-section .lead {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-section img {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.why-section,
.benefits-section,
.products-preview,
.services-preview,
.who-section,
.testimonials-section {
  padding: 4rem 0;
}

.why-section h2,
.benefits-section h2,
.products-preview h2,
.services-preview h2,
.who-section h2,
.testimonials-section h2 {
  font-weight: 700;
  color: var(--text-dark);
}

.feature-box,
.product-card,
.service-item,
.audience-box,
.testimonial-card {
  padding: 2rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-box:hover,
.product-card:hover,
.testimonial-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-box h4,
.product-card h4,
.service-item h5,
.audience-box h4 {
  color: var(--primary-red);
  margin-bottom: 1rem;
  font-weight: 600;
}

.product-card img,
.service-card img {
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

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

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

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

.cta-section,
.services-cta,
.products-cta,
.about-cta,
.contact-cta {
  padding: 4rem 0;
  background-color: var(--primary-red);
  color: var(--white);
}

.cta-section h2,
.services-cta h2,
.products-cta h2,
.about-cta h2 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section .lead,
.services-cta .lead,
.products-cta .lead,
.about-cta .lead {
  color: var(--white);
  opacity: 0.9;
}

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

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

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

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

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

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

.footer-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-red);
}

.page-header {
  padding: 3rem 0;
  background-color: var(--bg-light);
  border-bottom: 3px solid var(--primary-red);
}

.page-header h1 {
  font-weight: 700;
  color: var(--text-dark);
}

.about-content,
.services-intro,
.products-intro,
.contact-section,
.policy-content {
  padding: 3rem 0;
}

.offer-box,
.value-box {
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  margin-bottom: 1.5rem;
  height: 100%;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card h4 {
  color: var(--primary-red);
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
}

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

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

.product-detail-card h4 {
  color: var(--primary-red);
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

.product-features {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.product-features h6 {
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-note {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.contact-info-box h5 {
  color: var(--primary-red);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info-box h5:first-child {
  margin-top: 0;
}

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

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

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

.form-check-input:checked {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.thankyou-section {
  padding: 4rem 0;
}

.thankyou-box {
  background-color: var(--bg-light);
  padding: 3rem;
  border-radius: 8px;
  border: 2px solid var(--primary-red);
}

.thankyou-box h1 {
  color: var(--primary-red);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.thankyou-details {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.thankyou-details h4 {
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 1rem;
}

.thankyou-contact {
  padding: 1.5rem 0;
}

.thankyou-actions {
  margin-top: 2rem;
}

.thankyou-actions .btn {
  margin: 0.5rem;
}

.policy-header {
  padding: 3rem 0;
  background-color: var(--text-dark);
  color: var(--white);
}

.policy-header h1 {
  color: var(--white);
  font-weight: 700;
}

.policy-header .lead {
  color: var(--white);
  opacity: 0.8;
}

.policy-content h2 {
  color: var(--primary-red);
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h4 {
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

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

.policy-content a {
  color: var(--primary-red);
  text-decoration: none;
}

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

.table {
  margin: 1.5rem 0;
}

.table thead {
  background-color: var(--bg-light);
}

.about-location {
  padding: 3rem 0;
}

.contact-details {
  margin-top: 2rem;
}

.contact-details p {
  margin-bottom: 1rem;
}

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

.contact-cta {
  padding: 2rem 0;
}

.contact-cta h2 {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-cta .lead {
  color: var(--text-light);
}

.contact-cta a {
  color: var(--primary-red);
  text-decoration: none;
  font-weight: 600;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
}

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

.cookie-banner .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1.5rem;
  margin-left: 0.5rem;
}

.cookie-banner.hidden {
  display: none;
}

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

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

  .hero-section img {
    margin-top: 2rem;
  }

  .why-section,
  .benefits-section,
  .products-preview,
  .services-preview,
  .who-section,
  .testimonials-section {
    padding: 2rem 0;
  }

  .cta-section,
  .services-cta,
  .products-cta,
  .about-cta {
    padding: 2rem 0;
  }

  .page-header {
    padding: 2rem 0;
  }

  .thankyou-box {
    padding: 2rem;
  }

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

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  .thankyou-actions .btn {
    display: block;
    width: 100%;
    margin: 0.5rem 0;
  }
}
