:root {
  --primary-color: #388E3C;
  --primary-dark: #2E7D32;
  --primary-light: #4CAF50;
  --text-dark: #212529;
  --text-muted: #6c757d;
  --bg-light: #f8f9fa;
  --white: #ffffff;
}

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

body {
  font-family: 'Lato', 'Roboto', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.navbar-brand:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

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

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

main {
  margin-top: 76px;
}

.hero-section {
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.9), rgba(46, 125, 50, 0.9));
  color: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

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

.section {
  padding: 80px 0;
}

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

.card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  height: 100%;
}

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

.card-img-top {
  border-radius: 8px 8px 0 0;
  height: 250px;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

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

.info-box {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: box-shadow 0.3s ease;
}

.info-box:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.info-box h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.product-card {
  text-align: center;
  padding: 20px;
}

.product-card img {
  margin: 0 auto 20px;
  border-radius: 8px;
  height: 200px;
  width: 100%;
  object-fit: cover;
}

footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

footer h5 {
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

footer a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 0.5rem;
}

footer a:hover {
  color: var(--primary-light);
}

footer p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.6);
}

.disclaimer-box {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 20px;
  margin: 30px 0;
  border-radius: 4px;
}

.disclaimer-box h4 {
  color: #856404;
  margin-bottom: 10px;
}

.disclaimer-box p {
  color: #856404;
  margin-bottom: 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-consent p {
  margin-bottom: 15px;
}

.cookie-consent .btn {
  margin-right: 10px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(56, 142, 60, 0.25);
}

.icon-feature {
  text-align: center;
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

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

.icon-feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.policy-content h2 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.policy-content h3 {
  color: var(--primary-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.2rem;
  }
  
  .hero-section {
    padding: 60px 0;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
  }
}
