@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&family=Georgia:wght@400;700&display=swap');

:root {
  --primary-green: #388E3C;
  --light-gray: #F5F5F5;
  --dark-gray: #333333;
  --border-gray: #E0E0E0;
  --text-muted: #666666;
  --white: #FFFFFF;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--dark-gray);
}

h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: var(--primary-green);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: opacity 0.4s ease;
}

a:hover {
  opacity: 0.8;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-gray);
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.logo {
  font-family: 'Georgia', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-gray);
  transition: color 0.4s ease;
}

nav a:hover {
  color: var(--primary-green);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

header + * {
  margin-top: 80px;
}

.hero {
  background: linear-gradient(135deg, rgba(56, 142, 60, 0.1) 0%, rgba(255, 255, 255, 0.95) 100%);
  padding: 4rem 0;
  overflow: hidden;
  margin-top: 20px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-gray);
}

.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.section-content.image-right .section-image {
  order: 2;
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.section-text h3 {
  color: var(--primary-green);
  font-size: 1.8rem;
}

.section-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s ease;
  font-family: 'Lato', sans-serif;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 142, 60, 0.3);
}

footer {
  background-color: var(--light-gray);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border-gray);
  margin-top: 4rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

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

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

.footer-section a {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-disclaimer {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-green);
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border-gray);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form {
  background-color: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
  max-width: 600px;
  margin: 2rem 0;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.4s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-green);
}

.form-disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.product-card {
  background-color: var(--light-gray);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--border-gray);
}

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

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

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

.product-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.policy-page {
  padding: 4rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.policy-page h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  margin-top: 1.5rem;
  color: var(--primary-green);
}

.policy-page p, .policy-page li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.policy-page ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.disclaimer-box {
  background-color: #FFF9E6;
  border: 2px solid #FFE082;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 6px solid var(--primary-green);
}

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

.disclaimer-box p {
  font-size: 0.9rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  nav ul {
    gap: 1rem;
  }

  nav a {
    font-size: 0.85rem;
  }

  .header-container {
    padding: 0.75rem 1rem;
  }

  header + * {
    margin-top: 70px;
  }

  .hero-content,
  .section-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-content.image-right .section-image {
    order: 1;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .hero {
    padding: 2rem 0;
  }

  .hero-content {
    padding: 2rem 0;
  }

  .section {
    padding: 2.5rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .footer-container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  nav ul {
    gap: 0.5rem;
  }

  nav a {
    font-size: 0.75rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .contact-form {
    padding: 1.5rem;
  }
}

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

.mt-3 {
  margin-top: 2rem;
}

.mb-3 {
  margin-bottom: 2rem;
}

.py-4 {
  padding: 2rem 0;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.smooth-scroll {
  scroll-behavior: smooth;
}
