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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #212529;
  background-color: #ffffff;
  line-height: 1.6;
}

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: #ffffff !important;
  padding: 1rem 0;
}

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

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

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

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

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.features-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.feature-box {
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1rem;
}

.feature-box p {
  color: #6c757d;
  line-height: 1.7;
}

.products-preview {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.products-section {
  padding: 60px 0;
}

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

.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(220, 53, 69, 0.2);
}

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

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

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

.product-info p {
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.7;
  flex-grow: 1;
}

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

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

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

.cta-section {
  padding: 80px 0;
  background-color: #dc3545;
  color: #ffffff;
}

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

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

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

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

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

.btn-outline-danger:hover {
  background-color: #dc3545;
  border-color: #dc3545;
  color: #ffffff;
  transform: translateY(-2px);
}

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

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

.page-header p {
  font-size: 1.25rem;
  opacity: 0.9;
}

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

.content-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 1.5rem;
}

.content-section p {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.value-card {
  padding: 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  height: 100%;
  transition: all 0.3s ease;
}

.value-card:hover {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

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

.contact-info-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.contact-info-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

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

.contact-details,
.business-hours {
  background-color: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.contact-details h5,
.business-hours h5 {
  color: #dc3545;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.contact-form .form-control {
  border: 1px solid #ced4da;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  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.25);
}

.contact-form label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-weight: 400;
}

.form-check-label a {
  color: #dc3545;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.thank-you-section {
  padding: 120px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background-color: #28a745;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}

.legal-content {
  padding: 60px 0;
}

.legal-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #212529;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

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

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

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

.legal-content ul {
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

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

.info-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

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

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

.cookie-buttons .btn {
  white-space: nowrap;
}

.footer {
  background-color: #212529;
  color: #ffffff;
  padding: 60px 0 20px;
  margin-top: 80px;
}

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

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

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

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

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

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #495057;
}

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

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

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

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

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

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }
}

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