/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7faf7;
    color: #222;
    line-height: 1.6;
}
header {
    background: #1b5e20;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
}
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #a5d6a7;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}
.hero {
    background: linear-gradient(120deg, #43a047 0%, #a5d6a7 100%);
    color: #fff;
    padding: 5rem 2rem 4rem 2rem;
    text-align: center;
}
.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #fff;
    color: #388e3c;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}
.cta-btn:hover {
    background: #388e3c;
    color: #fff;
}
.features {
    background: #e8f5e9;
    padding: 4rem 2rem;
    text-align: center;
}
.features h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1b5e20;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(67,160,71,0.08);
    padding: 2rem 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(67,160,71,0.15);
}
.about {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}
.about h2 {
    color: #1b5e20;
    margin-bottom: 1.2rem;
    font-size: 2rem;
}
.contact {
    background: #e8f5e9;
    padding: 4rem 2rem;
    text-align: center;
}
.contact h2 {
    color: #1b5e20;
    margin-bottom: 1.2rem;
    font-size: 2rem;
}
#contact-form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#contact-form input, #contact-form textarea {
    padding: 0.8rem;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}
#contact-form button {
    background: #43a047;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
#contact-form button:hover {
    background: #1b5e20;
}
#form-message {
    margin-top: 1rem;
    font-size: 1rem;
    color: #388e3c;
}
footer {
    background: #1b5e20;
    color: #fff;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
}
.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}
.footer-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}
.footer-links li a {
    color: #a5d6a7;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: #fff;
}
.products {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
}
.products h2 {
    color: #1b5e20;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.product-card {
    background: #e8f5e9;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(67,160,71,0.08);
    padding: 1.5rem 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px rgba(67,160,71,0.15);
}
.product-card img {
    width: 100%;
    max-width: 180px;
    border-radius: 8px;
    margin-bottom: 1rem;
    object-fit: cover;
    aspect-ratio: 1/1;
}
.product-card h3 {
    margin-bottom: 0.5rem;
    color: #388e3c;
    font-size: 1.2rem;
}
.product-card p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.price {
    font-weight: 700;
    color: #1b5e20;
    font-size: 1.1rem;
}
.brochure {
    background: #e8f5e9;
    padding: 3rem 2rem;
    text-align: center;
}
.brochure h2 {
    color: #1b5e20;
    margin-bottom: 1rem;
    font-size: 2rem;
}
.brochure-btn {
    display: inline-block;
    background: #43a047;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    margin-top: 1rem;
    transition: background 0.2s, color 0.2s;
}
.brochure-btn:hover {
    background: #1b5e20;
    color: #fff;
}
@media (max-width: 800px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        display: none;
        background: #1b5e20;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 1rem 0;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-toggle {
        display: flex;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .features h2, .about h2, .contact h2 {
        font-size: 1.3rem;
    }
    .features-grid {
        gap: 1rem;
    }
    .feature-card {
        padding: 1.2rem 0.7rem;
    }
    footer {
        padding: 1rem 0.5rem;
    }
    .products h2, .brochure h2 {
        font-size: 1.3rem;
    }
    .products-grid {
        gap: 1rem;
    }
    .product-card {
        padding: 1rem 0.5rem;
    }
} 