:root {
  --primary: #156037;
  --secondary: #7D8D2B;
  --light: #FEFEFE;
  --gray-100: #f3f4f6;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', system-ui, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--light);
  color: var(--gray-700);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0.6rem 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px !important;
  height: 48px !important;
  background-color: var(--white);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  object-fit: contain !important;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text p {
  font-size: 0.875rem;
  color: #6b7280;
}

nav a {
  color: var(--gray-700);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--primary);
}

/* Hero */
.hero {
  padding: 5rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--gray-700);
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.btn:hover {
    background: #12502f;
    color: var(--white) !;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}


.countdown-box {
  background-color: var(--white);
  border: 2px solid var(--secondary);
  border-radius: 1rem;
  padding: 2rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.countdown-box h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.count-item {
  text-align: center;
}

.count-item .num {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.count-item .label {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.subscribe {
  max-width: 500px;
  margin: 0 auto;
}

.subscribe p {
  margin-bottom: 1rem;
  color: var(--gray-600);
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.subscribe-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  min-width: 200px;
}

.subscribe-form button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.subscribe-form button:hover {
  background-color: #12502f;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: var(--secondary);
  margin: 0 auto;
}

/* About */
.about {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--primary);
}

.card-secondary {
  border-color: var(--secondary);
}

.card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.25rem;
}

.card-icon.primary {
  background-color: var(--primary);
}

.card-icon.secondary {
  background-color: var(--secondary);
}

.card h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.card-secondary h4 {
  color: var(--secondary);
}

.card p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Products */
.products {
  padding: 4rem 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.product-icon.secondary {
  background-color: var(--secondary);
}

.product-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary);
}

.product-card.secondary h4 {
  color: var(--secondary);
}

/* Contact */
.contact {
  padding: 4rem 0;
  background-color: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item {
  text-align: center;
  padding: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.25rem;
}

.contact-icon.alt {
  background-color: var(--secondary);
}

.contact-item h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: var(--gray-600);
}

/* Footer */
footer {
  background-color: var(--primary);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-icon {
  width: 32px;
  height: 32px;
  background-color: white;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
}

footer p {
  color: #cbd5e1;
  margin: 0.25rem 0;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .about-content {
    grid-template-columns: 1fr;
  }
  .header-content {
    flex-direction: column;
    gap: 1.5rem;
  }
  nav {
    display: none;
  }
}