:root {
  --primary-green: #3d7a5c;
  --secondary-green: #5a9d7a;
  --dark-graphite: #3a3f47;
  --light-graphite: #6b7280;
  --accent-teal: #4db8a0;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --text-dark: #2d3748;
  --text-muted: #718096;
  --border-color: #e2e8f0;
}

* {
  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-color: var(--bg-white);
}

.navbar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: var(--secondary-green);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-green);
}

.hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 122, 92, 0.85) 0%, rgba(58, 63, 71, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 122, 92, 0.4);
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
}

.btn-outline-primary {
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  background: transparent;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-green);
  color: white;
  transform: translateY(-2px);
}

.content-section {
  padding: 5rem 0;
}

.content-section.bg-light {
  background-color: var(--bg-light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-graphite);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.category-list .category-item {
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.category-list .category-item:hover {
  transform: translateY(-5px);
}

.category-list .category-item h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.format-list p {
  margin-bottom: 1rem;
}

.disclaimer-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 5px solid var(--primary-green);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.disclaimer-box h4 {
  color: var(--dark-graphite);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 5rem 0;
  color: white;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.footer {
  background: var(--dark-graphite);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--accent-teal);
  font-weight: 600;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-teal);
}

.footer-contact {
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-disclaimer {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 1rem;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-consent.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-content p {
  margin: 0;
  flex: 1;
  min-width: 300px;
}

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

.page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-graphite) 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  margin-top: 72px;
}

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

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

.products-section {
  padding: 4rem 0;
}

.filter-section {
  text-align: center;
}

.filter-section h5 {
  color: var(--dark-graphite);
  font-weight: 600;
  margin-bottom: 1rem;
}

.filter-btn {
  margin: 0.25rem;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
}

.filter-btn.active {
  background: var(--primary-green);
  color: white;
  border-color: var(--primary-green);
}

.product-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-category {
  display: inline-block;
  background: var(--accent-teal);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-card h4 {
  color: var(--dark-graphite);
  font-weight: 700;
  margin-bottom: 1rem;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.product-details {
  border-top: 2px solid var(--border-color);
  padding-top: 1rem;
}

.product-details h6 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.product-details p {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.info-notice {
  margin-top: 3rem;
}

.notice-box {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border-left: 5px solid #f59e0b;
  padding: 2rem;
  border-radius: 10px;
}

.notice-box h5 {
  color: var(--dark-graphite);
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-box {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: transform 0.3s ease;
}

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

.feature-box h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.transparency-box {
  background: linear-gradient(135deg, #e6f7f1 0%, #ffffff 100%);
  border-left: 5px solid var(--primary-green);
  padding: 2.5rem;
  border-radius: 12px;
}

.transparency-box h3 {
  color: var(--dark-graphite);
  font-weight: 700;
  margin-bottom: 1rem;
}

.transparency-box ul {
  margin: 1rem 0;
}

.contact-section {
  padding: 4rem 0;
}

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

.contact-info-item h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-notice {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.contact-form-wrapper {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(61, 122, 92, 0.1);
}

.form-disclaimer {
  background: var(--bg-light);
  padding: 1rem;
  border-radius: 8px;
}

.thank-you-section {
  padding: 8rem 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 72px;
}

.thank-you-content {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thank-you-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.policy-section {
  padding: 4rem 0;
}

.policy-content h2 {
  color: var(--dark-graphite);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

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

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

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

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

  .thank-you-content {
    padding: 2rem;
  }

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

  .cookie-buttons {
    justify-content: center;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
    margin: 0.5rem 0;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

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

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

  .content-section {
    padding: 3rem 0;
  }

  .page-header {
    padding: 6rem 0 3rem;
  }

  .filter-btn {
    width: 100%;
    margin: 0.25rem 0;
  }
}
