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

:root {
  --primary: #2d5016;
  --primary-dark: #1e3410;
  --primary-light: #3d6b1f;
  --accent: #4caf50;
  --accent-light: #81c784;
  --background: #f8f9f7;
  --surface: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --border: #e0e0e0;
  --success: #4caf50;
  --warning: #ffa726;
  --danger: #ef5350;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
}

header {
  background-color: var(--surface);
  border-bottom: 2px solid var(--primary);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo:hover {
  color: var(--accent);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background-color: var(--surface);
    border-bottom: 2px solid var(--primary);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--border);
  }

  .mobile-toggle {
    display: block;
  }

  .navbar-container {
    padding: 0 15px;
  }
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px;
  min-height: calc(100vh - 200px);
}

.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 80px 15px;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 40px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero .cta-btn {
  background-color: var(--accent);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.hero .cta-btn:hover {
  background-color: var(--accent-light);
}

.section-title {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 40px;
  text-align: center;
  font-weight: bold;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.product-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.product-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  background-color: var(--background);
}

.product-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 15px;
  flex-grow: 1;
}

.product-footer {
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.learn-more-btn {
  background-color: var(--primary);
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-size: 14px;
}

.learn-more-btn:hover {
  background-color: var(--accent);
}

.category-header {
  background-color: var(--primary);
  color: white;
  padding: 40px 15px;
  margin-bottom: 40px;
  border-radius: 8px;
}

.category-header h1 {
  font-size: 40px;
  margin-bottom: 10px;
}

.category-header p {
  font-size: 18px;
  opacity: 0.95;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
}

.about-text h2 {
  color: var(--primary);
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 15px;
  line-height: 1.8;
}

.about-image {
  width: 100%;
  max-width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid var(--accent);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: var(--surface);
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
}

.checkbox-group a {
  color: var(--accent);
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.form-submit {
  background-color: var(--primary);
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--accent);
}

.footer {
  background-color: var(--primary);
  color: white;
  padding: 40px 15px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--accent);
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

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

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

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

.page-title {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: bold;
}

.policy-section {
  background-color: var(--surface);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.policy-section h2 {
  color: var(--primary);
  font-size: 24px;
  margin-bottom: 15px;
}

.policy-section p {
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.8;
}

.policy-section ul {
  margin-left: 20px;
  margin-bottom: 15px;
  color: var(--text-secondary);
}

.policy-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.thank-you-container {
  text-align: center;
  padding: 60px 15px;
}

.thank-you-container h1 {
  color: var(--accent);
  font-size: 48px;
  margin-bottom: 20px;
}

.thank-you-container p {
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-container .cta-btn {
  background-color: var(--primary);
  color: white;
  padding: 14px 32px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.thank-you-container .cta-btn:hover {
  background-color: var(--accent);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary);
  color: white;
  padding: 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 3px solid var(--accent);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-text {
  font-size: 14px;
  flex-grow: 1;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent);
  color: white;
}

.cookie-accept:hover {
  background-color: var(--accent-light);
}

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }
}

.breadcrumb {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.disclaimer-box {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
  color: #856404;
}

.disclaimer-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}
