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

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

a {
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  text-decoration: none;
}

.text-success {
  color: #27ae60 !important;
}

.btn-success {
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn-success:hover {
  background-color: #229954;
  border-color: #229954;
}

.btn-outline-success:hover {
  background-color: #27ae60;
  border-color: #27ae60;
  color: white;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
}

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

.hero-section h1 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.card-body a {
  color: #27ae60;
  font-weight: 600;
  transition: color 0.3s ease;
}

.card-body a:hover {
  color: #229954;
}

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

.form-control:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.15);
}

.form-check-input:checked {
  background-color: #27ae60;
  border-color: #27ae60;
}

.form-check-input:focus {
  border-color: #27ae60;
  box-shadow: 0 0 0 0.2rem rgba(39, 174, 96, 0.15);
}

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

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

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

.cookie-banner a {
  color: #27ae60;
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: #229954;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-top: 0.5rem;
}

footer {
  margin-top: 5rem;
}

footer a {
  transition: color 0.3s ease;
}

footer a:hover {
  color: #27ae60;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}

.text-white-50:hover {
  color: rgba(255, 255, 255, 1) !important;
}

.bg-success {
  background-color: #27ae60 !important;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0 !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.alert-success {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.alert-info {
  background-color: #d1ecf1;
  border-color: #bee5eb;
  color: #0c5460;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

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

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

  .cookie-banner {
    padding: 1rem;
  }

  .cookie-banner p {
    font-size: 0.85rem;
  }

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

.min-vh-100 {
  min-height: 100vh;
}

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100;
}
