
:root {
    --primary-color: #2c7a51;
    --secondary-color: #4ca375;
    --background-color: #f8f9fa;
    --text-color: #1a1a1a;
    --accent-green: #63c895;
    --gradient-start: #2c7a51;
    --gradient-end: #63c895;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(255, 255, 255, 0.2);
    --section-spacing: 6rem;
    --container-width: 1200px;
    --border-radius: 20px;
  }
  
  .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .home {
    background-color: var(--background-color);
  }
  
  .hero {
    min-height: 90vh;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    position: relative;
    overflow: hidden;
    padding: 0;
  }
  
  .hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .hero-text {
    color: white;
  }
  
  .pre-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
  }
  
  .hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin: 1rem 0;
    font-weight: 600;
  }
  
  .hero-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
  }
  
  .vision {
    padding: var(--section-spacing) 0;
  }
  
  .vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .vision-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
  }
  
  .vision-card:hover {
    transform: translateY(-10px);
  }
  
  .vision-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .stats-bar {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 2rem 0;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
  }
  
  .stat-item span {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .testimonials {
    padding: var(--section-spacing) 0;
    background: #f8f9fa;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .stars {
    color: #ffd700;
    margin-bottom: 1rem;
  }
  
  .author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .gallery {
    padding: var(--section-spacing) 0;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }
  
  .gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  
  .nature-care {
    padding: var(--section-spacing) 0;
  }
  
  .nature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .nature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }
  
  .nature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  @media (max-width: 768px) {
    .stats-grid,
    .testimonial-grid,
    .gallery-grid,
    .nature-grid {
      grid-template-columns: 1fr;
    }
  }
  
  .stat-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
  }
  
  .featured-products {
    padding: var(--section-spacing) 0;
  }
  
  .product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .product-preview {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  }
  
  .product-preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .product-preview h3 {
    padding: 1.5rem;
    margin: 0;
  }
  
  .link-arrow {
    display: inline-block;
    padding: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
  }
  
  .link-arrow i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .link-arrow:hover i {
    transform: translateX(5px);
  }
  
  .join-movement {
    padding: var(--section-spacing) 0;
  }
  
  .newsletter-form .form-group {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 0;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50px;
    font-size: 1rem;
  }
  
  footer {
    background: white;
    padding: 4rem 0 2rem;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  
  .footer-brand p {
    margin-top: 1rem;
    color: #666;
  }
  
  .footer-links {
    display: flex;
    gap: 2rem;
  }
  
  .footer-links a {
    color: var(--text-color);
    text-decoration: none;
  }
  
  .copyright {
    text-align: center;
    color: #666;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
  }
  
  @media (max-width: 768px) {
    .hero-content {
      grid-template-columns: 1fr;
      text-align: center;
    }
    
    .hero h1 {
      font-size: 3rem;
    }
    
    .vision-grid,
    .impact-stats,
    .product-showcase {
      grid-template-columns: 1fr;
    }
    
    .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
    
    .footer-links {
      justify-content: center;
    }
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  
  body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
  }
  
  .hero {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
  }
  
  .hero-content {
    text-align: center;
    color: white;
    z-index: 2;
  }
  
  .hero h1 {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
  }
  
  .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .cta-button.primary {
    background: white;
    color: var(--primary-color);
  }
  
  .cta-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
  }
  
  .floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-icon:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
  .floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
  .floating-icon:nth-child(3) { top: 40%; left: 50%; animation-delay: 4s; }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
  }
  
  .section-header {
    text-align: center;
    margin: 4rem 0;
  }
  
  .section-tag {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
  }
  
  .impact-stat {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .impact-stat:hover {
    transform: translateY(-5px);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes leafFloat {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
  }
  
  nav {
    background-color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
  }
  
  .nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 1.5rem;
    padding: 0.5rem;
  }
  
  .nav-links a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
  }
  
  .hero {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-green));
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '🍃';
    position: absolute;
    font-size: 2rem;
    animation: leafFloat 3s ease-in-out infinite;
    left: 10%;
  }
  
  .hero::after {
    content: '🌿';
    position: absolute;
    font-size: 2rem;
    animation: leafFloat 3s ease-in-out infinite;
    right: 10%;
    animation-delay: 1.5s;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out;
  }
  
  .hero p {
    animation: fadeInUp 1s ease-out 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
  }
  
  main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .intro {
    text-align: center;
    margin: 3rem 0;
  }
  
  .cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 1rem;
    transition: background-color 0.3s;
  }
  
  .cta-button:hover {
    background-color: var(--primary-color);
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
  }
  
  .feature {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .about-content {
    max-width: 800px;
    margin: 2rem auto;
  }
  
  .about-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
  }
  
  footer {
    text-align: center;
    padding: 2rem;
    background-color: white;
    margin-top: 3rem;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
  }
  
  .product-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  
  .product-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
  }
  
  .product-card p {
    margin-bottom: 1rem;
  }
  
  .product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  .product-detail img {
    width: 100%;
    border-radius: 8px;
  }
  
  .product-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .product-features {
    margin: 1.5rem 0;
  }
  
  .product-features li {
    margin-bottom: 0.5rem;
  }
  
  .price {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 1rem 0;
  }
  
  .legal-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #666;
  }
  
  .legal-info p {
    margin-bottom: 0.5rem;
  }
  
  .whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 1000;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
  }
  
  @media (max-width: 768px) {
    .product-detail {
      grid-template-columns: 1fr;
    }
    nav {
      flex-direction: column;
      text-align: center;
    }
    
    .nav-links {
      margin-top: 1rem;
    }
    
    .nav-links a {
      margin: 0 0.5rem;
    }
    
    .hero h1 {
      font-size: 2rem;
    }
  }
  