:root {
  --primary-green: #28a745;
  --secondary-orange: #fd7e14;
  --accent-blue: #1e3a5f;
  --text-dark: #333333;
  --bg-gray: #f8f9fa;
  --border-light: #e0e0e0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #ffffff;
}

.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.logo {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-blue);
  text-decoration: none;
  transition: opacity 0.3s;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
  color: var(--accent-blue);
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--accent-blue);
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  background: var(--primary-green);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40,167,69,0.3);
  color: white;
  text-decoration: none;
}

.btn-secondary {
  background: var(--secondary-orange);
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-left: 1rem;
}

.btn-secondary:hover {
  background: #e8590c;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(253,126,20,0.3);
  color: white;
  text-decoration: none;
}

.section {
  padding: 4rem 0;
}

.section-gray {
  background: var(--bg-gray);
}

.criteria-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0;
}

.chip {
  background: white;
  border: 1px solid var(--border-light);
  padding: 0.5rem 1.25rem;
  border-radius: 24px;
  font-size: 0.9rem;
  color: var(--text-dark);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.two-col {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.two-col-img {
  flex: 1;
  min-width: 300px;
}

.two-col-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.two-col-text {
  flex: 1;
  min-width: 300px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
  position: relative;
}

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

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

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-blue);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-badge::before {
  content: '';
  position: absolute;
  top: -3px;
  right: -3px;
  bottom: -3px;
  left: -3px;
  border-radius: 14px;
  border: 2px solid var(--accent-blue);
  opacity: 0.3;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--accent-blue);
}

.product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.product-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.25rem;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list strong {
  color: var(--accent-blue);
  margin-right: 0.5rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-tile {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: all 0.3s;
}

.category-tile:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.category-tile h3 {
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
}

.table-responsive {
  overflow-x: auto;
  margin: 2rem 0;
}

.table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
}

.table th {
  background: var(--accent-blue);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.table tr:last-child td {
  border-bottom: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.faq-answer {
  color: #666;
  font-size: 0.9rem;
}

.footer {
  background: var(--accent-blue);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
}

.footer-link:hover {
  opacity: 0.8;
  text-decoration: none;
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.contact-info {
  background: var(--bg-gray);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.contact-info p {
  margin-bottom: 0.5rem;
}

.contact-info strong {
  color: var(--accent-blue);
  margin-right: 0.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-check input {
  margin-top: 0.25rem;
}

.thank-you-box {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 600px;
  margin: 4rem auto;
}

.thank-you-box h1 {
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  color: var(--accent-blue);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--text-dark);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.legal-content ul {
  margin-bottom: 1rem;
  margin-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

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

.rule-tile {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary-green);
}

.rule-tile h4 {
  color: var(--accent-blue);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(30,58,95,0.98);
  color: white;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
  display: none;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 300px;
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.cookie-btn-accept {
  background: var(--primary-green);
  color: white;
}

.cookie-btn-accept:hover {
  background: #218838;
}

.cookie-btn-decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn-decline:hover {
  background: rgba(255,255,255,0.1);
}

.divider {
  height: 1px;
  background: var(--border-light);
  margin: 3rem 0;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .btn-secondary {
    margin-left: 0;
    margin-top: 0.5rem;
  }
  
  .two-col {
    flex-direction: column;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-actions {
    justify-content: center;
  }
}
