/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 28px;
    font-weight: 600;
    color: #2c5530;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f4e8 100%);
    padding: 80px 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #5a6b5a;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    background-color: #4a7c59;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3d6b47;
}

.hero-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.product-image {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-image-main {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-main {
    transform: scale(1.05);
}

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

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #2c5530;
    text-align: center;
    margin-bottom: 50px;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: #5a6b5a;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #f8faf8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e8f4e8;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    color: #5a6b5a;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-item {
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    color: #5a6b5a;
    line-height: 1.5;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #f8faf8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e8f4e8;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 22px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.product-info p {
    color: #5a6b5a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.product-button {
    display: inline-block;
    background-color: #4a7c59;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.product-button:hover {
    background-color: #3d6b47;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: #f8faf8;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4a7c59;
}

.testimonial-card p {
    color: #5a6b5a;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5530;
}

/* Values Section */
.values {
    padding: 80px 0;
    background-color: #f8faf8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-item {
    text-align: center;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e8f4e8;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 20px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #5a6b5a;
    line-height: 1.5;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 20px;
    color: #2c5530;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-item a {
    color: #4a7c59;
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item p {
    color: #5a6b5a;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #2c5530;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-logo .brand-name {
    font-size: 24px;
    font-weight: 600;
    color: white;
}

/* Footer Links Styles */
.footer-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-links a {
    color: #b8d4bb;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-text p {
    color: #b8d4bb;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-main-image {
        height: 300px;
    }
    
    .about-main-image {
        height: 280px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
}