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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-image {
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.nav-link {
    text-decoration: none;
    color: #1a5f3f;
    font-size: 28px;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link.active {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a5f3f 0%, #2d7a52 100%);
    color: white;
    padding: 80px 0;
    /* text-align: center; */
}

.hero-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
}

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

.products-title {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 10px;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.gallery-link-text {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-top: 40px;
}

.gallery-link {
    color: #1a5f3f;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.gallery-link:hover {
    border-bottom-color: #1a5f3f;
}

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

.contact-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1a5f3f;
    margin-bottom: 50px;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.contact-option:hover {
    background-color: #f0f7f4;
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contact-option span {
    font-size: 18px;
    font-weight: 500;
    color: #1a5f3f;
}

/* Gallery Carousel */
.gallery-carousel {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-inner {
    position: relative;
    width: 100%;
    height: 800px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    display: flex;
}

.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(26, 95, 63, 0.8);
    color: white;
    border: none;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.carousel-control:hover {
    background-color: rgba(26, 95, 63, 1);
}

.carousel-control.prev {
    left: 10px;
    border-radius: 0 8px 8px 0;
}

.carousel-control.next {
    right: 10px;
    border-radius: 8px 0 0 8px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: rgba(26, 95, 63, 1);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .contact-options {
        gap: 30px;
    }
    
    .header-image {
        max-height: 75px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .products, .contact {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}
