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

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

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #28a745;
  text-decoration: none;
}

.navbar-brand:hover {
  color: #28a745;
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: #0066cc;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #004999;
}

.hero-section {
  padding: 2rem 0;
  background-color: #f8f9fa;
}

.hero-section h1 {
  font-size: 2rem;
  color: #333333;
  margin-bottom: 1rem;
}

.section {
  padding: 3rem 0;
}

.section-title {
  font-size: 1.75rem;
  color: #333333;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.budget-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.budget-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.budget-card h3 {
  font-size: 1.25rem;
  color: #28a745;
  margin-bottom: 0.75rem;
}

.product-card {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.product-card h4 {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.product-card p {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}

.product-price {
  font-size: 1.25rem;
  color: #28a745;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #f0f0f0;
  color: #666666;
  font-size: 0.8rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.product-info {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 0.5rem;
}

.btn-primary {
  background-color: #28a745;
  border: none;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #218838;
  transform: scale(1.03);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background-color: #ff8c00;
  border: none;
  color: #ffffff;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #e67e00;
  transform: scale(1.03);
  color: #ffffff;
  text-decoration: none;
}

.category-nav {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.category-nav:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.category-nav h4 {
  font-size: 1.2rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.category-nav a {
  color: #0066cc;
  text-decoration: none;
}

.category-nav a:hover {
  color: #004999;
  text-decoration: underline;
}

.image-strip {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2rem;
}

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

.image-strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 1rem;
  text-align: center;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.checklist li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
  font-size: 1.2rem;
}

.faq-item {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-item h4 {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.comparison-table {
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
}

.comparison-table th {
  background-color: #f8f9fa;
  color: #333333;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 1rem;
  border-top: 1px solid #e0e0e0;
}

.sort-chips {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.chip {
  padding: 0.5rem 1rem;
  background-color: #f0f0f0;
  color: #666666;
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
}

.chip:hover {
  background-color: #e0e0e0;
}

.two-column-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.two-column-list ul {
  list-style: none;
  padding: 0;
}

.two-column-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.two-column-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.rule-card {
  background-color: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}

.rule-card h4 {
  font-size: 1.1rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333333;
  font-weight: 500;
}

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

.form-control:focus {
  outline: none;
  border-color: #0066cc;
}

.footer {
  background-color: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  padding: 2rem 0;
  margin-top: 3rem;
}

.footer a {
  color: #0066cc;
  text-decoration: none;
}

.footer a:hover {
  color: #004999;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9);
  color: #ffffff;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner-text {
  flex: 1;
  min-width: 250px;
}

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

.thank-you-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-box {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

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

  .two-column-list {
    grid-template-columns: 1fr;
  }

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

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