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

:root {
  --primary: #dc3545;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

.navbar {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.hero-section h1 {
  color: #1a1a1a;
  line-height: 1.2;
}

.hero-section img {
  max-height: 500px;
  object-fit: cover;
}

.features-section {
  background-color: #f8f9fa;
}

.feature-icon {
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.2);
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

.product-card img {
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card {
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12) !important;
}

.btn-danger {
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

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

.btn-danger:focus,
.btn-danger.focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

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

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

.page-header {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-bottom: 2px solid #e9ecef;
}

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

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

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h6 {
  color: var(--primary);
}

.footer {
  background-color: var(--dark);
  color: #fff;
}

.thank-you-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.success-icon {
  font-size: 4rem;
}

.modal-content {
  border-radius: 8px;
}

.modal-header {
  background-color: var(--light);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--dark);
  color: #fff;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.text-danger {
  color: var(--primary) !important;
}

.bg-danger {
  background-color: var(--primary) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary) !important;
  font-weight: 600;
}

.text-decoration-none {
  text-decoration: none;
}

.text-decoration-none:hover {
  text-decoration: underline;
}

hr.bg-secondary {
  height: 1px;
  background-color: #6c757d !important;
  opacity: 0.3;
}

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-content p {
    margin-bottom: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

  .product-card img {
    height: 200px;
  }

  .modal-dialog {
    margin: 1rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.25rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

  .btn-lg {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}
