* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

.navbar {
  padding: 1rem 0;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  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: #7a2929;
}

.hero-section {
  position: relative;
  margin-bottom: 0;
}

.hero-image-container {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 2;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-header {
  background-color: #f8f9fa;
  padding: 4rem 0 3rem;
  margin-bottom: 3rem;
}

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

.page-subtitle {
  font-size: 1.1rem;
  color: #666;
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.2rem;
  font-weight: 400;
  color: #555;
  line-height: 1.8;
}

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

.btn-primary:hover {
  background-color: #5a1f1f;
  border-color: #5a1f1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 41, 41, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: #7a2929;
  border-color: #7a2929;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(122, 41, 41, 0.2);
}

.product-card {
  background: #fff;
  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%;
}

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

.product-image-placeholder {
  height: 250px;
  overflow: hidden;
}

.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-content {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.product-description {
  color: #666;
  margin-bottom: 1.5rem;
}

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

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

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

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

.faq-item h4 {
  color: #7a2929;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.faq-item p {
  color: #555;
  line-height: 1.8;
}

.cta-section {
  background: linear-gradient(135deg, #7a2929 0%, #5a1f1f 100%);
  padding: 5rem 0;
  margin-top: 3rem;
}

.footer {
  background-color: #2c2c2c;
  color: #ddd;
  padding: 3rem 0 1.5rem;
}

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

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

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

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

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

.footer-copyright {
  color: #999;
  font-size: 0.9rem;
  margin-top: 2rem;
  margin-bottom: 0;
}

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

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

.cookie-consent p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cookie-consent a {
  color: #fff;
  text-decoration: underline;
}

.cookie-consent .btn-light {
  background-color: #fff;
  color: #2c2c2c;
  border: none;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.cookie-consent .btn-outline-light {
  color: #fff;
  border-color: #fff;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
}

.cookie-consent .btn-outline-light:hover {
  background-color: #fff;
  color: #2c2c2c;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  padding: 0.75rem;
  font-size: 1rem;
}

.contact-form .form-control:focus {
  border-color: #7a2929;
  box-shadow: 0 0 0 0.2rem rgba(122, 41, 41, 0.15);
}

.contact-info-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.contact-info-card h4 {
  color: #7a2929;
  margin-bottom: 1rem;
}

.info-link-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  height: 100%;
}

.info-link-card h5 {
  color: #7a2929;
  margin-bottom: 0.75rem;
}

.info-link-card p {
  color: #666;
  margin-bottom: 1rem;
}

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

.policy-content h2 {
  color: #7a2929;
  font-size: 1.75rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

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

.policy-content h3 {
  color: #333;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content h4 {
  color: #555;
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

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

.policy-content li {
  margin-bottom: 0.5rem;
  color: #555;
}

.principle-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #7a2929;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.principle-card h4 {
  color: #7a2929;
  margin-bottom: 0.75rem;
}

.principle-card p {
  color: #666;
  margin-bottom: 0;
}

.feature-list {
  margin-left: 1.5rem;
  margin-top: 1rem;
}

.feature-list li {
  margin-bottom: 0.75rem;
  color: #555;
  line-height: 1.8;
}

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

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

  .hero-image-container {
    height: 500px;
  }

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

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

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

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

  .hero-image-container {
    height: 400px;
  }

  .content-section {
    padding: 3rem 0;
  }

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

  .cookie-consent .col-md-7,
  .cookie-consent .col-md-5 {
    text-align: center;
  }

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