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

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

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

.navbar {
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: #495057;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #c92a2a;
}

.hero-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
  display: flex;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: #f8f9fa;
  margin-bottom: 2rem;
}

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

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

.content-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
}

.content-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: #495057;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #495057;
  margin-bottom: 1rem;
}

.content-list {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-list li {
  margin-bottom: 0.5rem;
  color: #495057;
}

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

.btn-primary:hover {
  background-color: #a61e1e;
  border-color: #a61e1e;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(201, 42, 42, 0.3);
}

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

.btn-outline-primary:hover {
  background-color: #c92a2a;
  border-color: #c92a2a;
  color: #ffffff;
}

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

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

.product-body {
  padding: 1.5rem;
}

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

.product-description {
  font-size: 0.95rem;
  color: #495057;
  margin-bottom: 1rem;
}

.product-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.product-features li {
  font-size: 0.9rem;
  color: #6c757d;
  padding: 0.25rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c92a2a;
  font-weight: 700;
}

.cta-section {
  background: linear-gradient(135deg, #c92a2a 0%, #a61e1e 100%);
  color: #ffffff;
}

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

.cta-text {
  font-size: 1.125rem;
  color: #f8f9fa;
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #c92a2a;
}

.cta-section .btn-primary:hover {
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

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

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #212529;
}

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

.principle-card {
  background: #f8f9fa;
  border-left: 4px solid #c92a2a;
  padding: 1.5rem;
  border-radius: 4px;
}

.principle-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.75rem;
}

.contact-info-box {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #c92a2a;
}

.contact-info-box p {
  margin-bottom: 0.5rem;
  color: #495057;
}

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

.form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: #c92a2a;
  box-shadow: 0 0 0 0.2rem rgba(201, 42, 42, 0.25);
}

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

.help-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #495057;
}

.help-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c92a2a;
  font-weight: 700;
}

.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-box {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.thank-you-text {
  font-size: 1.125rem;
  color: #495057;
  margin-bottom: 1rem;
}

.footer {
  margin-top: 4rem;
}

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

.footer-text {
  font-size: 0.95rem;
  color: #adb5bd;
}

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

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

.footer-contact li {
  font-size: 0.95rem;
  color: #adb5bd;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #6c757d;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #212529;
  color: #ffffff;
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
  display: none;
}

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

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

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

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

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

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

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

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

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

  .thank-you-box {
    padding: 2rem;
  }

  .thank-you-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-image {
    height: 400px;
  }

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

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}
