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

.brand-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: #dc3545;
  letter-spacing: -0.5px;
}

.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #1a1a1a;
  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: #dc3545;
}

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

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

.hero-description {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
  margin-top: 2rem;
}

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

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

.btn-outline-dark {
  border-color: #1a1a1a;
  color: #1a1a1a;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.values-section,
.benefits-section,
.target-section,
.testimonials-section,
.about-intro,
.mission-values,
.approach-section,
.commitment-section,
.contact-info-section,
.products-intro,
.products-catalog,
.quality-section,
.contact-section,
.disclaimer-section {
  padding: 5rem 0;
}

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

.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.value-card {
  padding: 2rem;
  background-color: #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%;
}

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

.value-icon {
  color: #dc3545;
  margin-bottom: 1.5rem;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.value-text {
  color: #4a4a4a;
  line-height: 1.6;
}

.benefit-list {
  padding-left: 0;
}

.benefit-item {
  display: flex;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.benefit-item:hover {
  background-color: #e9ecef;
}

.benefit-number {
  font-size: 2rem;
  font-weight: 700;
  color: #dc3545;
  margin-right: 1.5rem;
  min-width: 60px;
}

.benefit-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: #4a4a4a;
  margin-bottom: 0;
}

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

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

.target-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.target-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  padding: 1.5rem 1.5rem 0.5rem;
}

.target-text {
  color: #4a4a4a;
  padding: 0 1.5rem 1.5rem;
}

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

.testimonial-rating {
  color: #ffc107;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: #1a1a1a;
  font-size: 1.1rem;
}

.testimonial-author span {
  color: #6c757d;
  font-size: 0.9rem;
}

.cta-section {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #e9ecef;
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1rem;
}

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

.footer-text {
  color: #adb5bd;
  line-height: 1.6;
}

.footer-contact {
  color: #adb5bd;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 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: #dc3545;
}

.footer-disclaimer {
  margin-top: 1rem;
}

.footer-link {
  color: #dc3545;
  text-decoration: none;
}

.footer-link:hover {
  color: #c82333;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #343a40;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  color: #6c757d;
  margin: 0;
}

.page-header {
  background-color: #f8f9fa;
  padding: 4rem 0 3rem;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
}

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

.content-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.value-box {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #dc3545;
  height: 100%;
}

.value-box-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.value-box-text {
  color: #4a4a4a;
  line-height: 1.6;
}

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

.commitment-number {
  font-size: 3rem;
  font-weight: 700;
  color: #dc3545;
  opacity: 0.2;
  margin-bottom: 1rem;
}

.commitment-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.commitment-text {
  color: #4a4a4a;
  line-height: 1.6;
}

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

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

.product-card {
  background-color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.product-description {
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.product-features li {
  color: #4a4a4a;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.product-features li:before {
  content: "✓ ";
  color: #dc3545;
  font-weight: 700;
  margin-right: 0.5rem;
}

.disclaimer-box {
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 4px;
  margin: 2rem 0;
}

.disclaimer-box p {
  margin-bottom: 0.5rem;
}

.disclaimer-box p:last-child {
  margin-bottom: 0;
}

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

.quality-badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quality-badge svg {
  color: #dc3545;
  flex-shrink: 0;
}

.quality-badge span {
  font-weight: 600;
  color: #1a1a1a;
}

.contact-info-box {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
}

.contact-detail {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  color: #dc3545;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-text {
  color: #4a4a4a;
  line-height: 1.6;
}

.contact-hours {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #dee2e6;
}

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

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

.contact-form .form-label {
  font-weight: 600;
  color: #1a1a1a;
}

.required {
  color: #dc3545;
}

.contact-form .form-control {
  border: 2px solid #e9ecef;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

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

.thank-you-icon {
  color: #28a745;
  margin-bottom: 2rem;
}

.thank-you-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.thank-you-text {
  font-size: 1.25rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.thank-you-details {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.thank-you-details h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

.details-box {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 4px solid #dc3545;
}

.details-box p {
  margin-bottom: 0.75rem;
  color: #4a4a4a;
}

.details-box p:last-child {
  margin-bottom: 0;
}

.thank-you-actions {
  margin: 2rem 0;
}

.thank-you-info {
  margin-top: 3rem;
}

.thank-you-info h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 0.5rem 0;
  color: #4a4a4a;
}

.info-list li:before {
  content: "→ ";
  color: #dc3545;
  font-weight: 700;
  margin-right: 0.5rem;
}

.info-list a {
  color: #dc3545;
  text-decoration: none;
}

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

.legal-page {
  padding: 3rem 0;
}

.legal-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.legal-date {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 2rem;
}

.legal-content {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #e9ecef;
}

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

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

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

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

.legal-content ul li {
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

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

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

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

.legal-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  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;
}

.cookie-banner p {
  margin: 0;
  color: #e9ecef;
}

.cookie-link {
  color: #dc3545;
  text-decoration: underline;
}

.cookie-link:hover {
  color: #c82333;
}

.cookie-banner .btn-light {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1a1a1a;
}

.cookie-banner .btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
}

.cookie-banner .btn-outline-light:hover {
  background-color: #ffffff;
  color: #1a1a1a;
}

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

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

  .page-title {
    font-size: 2.25rem;
  }

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

  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

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

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

  .hero-description {
    font-size: 1rem;
  }

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

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

  .hero-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }

  .hero-cta .btn:last-child {
    margin-bottom: 0;
  }

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

  .cookie-banner .btn:last-child {
    margin-bottom: 0;
  }

  .legal-nav {
    flex-direction: column;
  }

  .legal-nav .btn {
    width: 100%;
  }
}
