:root {
    --primary-dark-green: #0A3622;    /* Dark green from logo */
    --primary-light-green: #7AB547;   /* Light green from logo */
    --secondary-green: #548235;       /* Medium green for accents */
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --light-bg: #F5F8F5;             /* Light green tinted background */
    --gradient: linear-gradient(135deg, var(--primary-dark-green), var(--primary-light-green));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.main-content {
    padding: 30px;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(10, 54, 34, 0.1);
    transition: transform 0.3s ease;
}
.main-content p{
    color: #548235;
}

.main-content:hover {
    transform: translateY(-5px);
}

h1 {
    color: var(--primary-dark-green);
    font-size: 2.5em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-light-green);
    border-radius: 2px;
}

.image-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
}

.product-image {
    width: 500px;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 30px auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(10, 54, 34, 0.15);
    transition: transform 0.3s ease, filter 0.3s ease;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

.features {
    margin-top: 40px;
}
.feature-item p{
    color: #548235;
}
.feature-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.feature-item:hover {
    border-left-color: var(--primary-light-green);
    transform: translateX(10px);
    background: var(--text-light);
    box-shadow: 0 5px 15px rgba(10, 54, 34, 0.08);
}

.feature-item strong {
    color: var(--primary-dark-green);
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.sidebar {
    background: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(10, 54, 34, 0.1);
}

.sidebar h3 {
    color: var(--primary-dark-green);
    margin-bottom: 20px;
    font-size: 1.5em;
}

.products-list {
    list-style: none;
}

.products-list li {
    margin-bottom: 10px;
}

.products-list a {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 20px;
    display: block;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.products-list a:hover {
    color: var(--text-light);
    background: var(--gradient);
    transform: translateX(10px);
}

.products-list a::before {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.products-list a:hover::before {
    opacity: 1;
}

.cta-box {
    background: var(--gradient);
    color: var(--text-light);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-box:hover::before {
    transform: translateX(0);
}

.cta-button {
    display: inline-block;
    background: var(--text-light);
    color: var(--primary-dark-green);
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(10, 54, 34, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(10, 54, 34, 0.3);
    background: var(--primary-light-green);
    color: var(--text-light);
}

/* Lightbox styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 54, 34, 0.9);
    z-index: 1000;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--text-light);
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-lightbox:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox.active img {
    animation: zoomIn 0.3s ease-out;
}

.main-content, .sidebar {
    animation: fadeIn 0.8s ease-out forwards;
}

.feature-item {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.2s; }
.feature-item:nth-child(2) { animation-delay: 0.4s; }
.feature-item:nth-child(3) { animation-delay: 0.6s; }
.feature-item:nth-child(4) { animation-delay: 0.8s; }

/* Responsive styles */
@media (max-width: 1024px) {
    .container {
        padding: 30px 15px;
        gap: 30px;
    }

    .product-image {
        width: 100%;
        height: 280px;
    }

    .feature-item {
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .main-content, .sidebar {
        padding: 20px;
    }

    h1 {
        font-size: 2em;
    }

    .feature-item:hover {
        transform: translateX(5px);
    }

    .product-image {
        height: 250px;
    }

    .cta-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }

    h1 {
        font-size: 1.8em;
    }

    .product-image {
        height: 200px;
    }

    .feature-item {
        margin-bottom: 15px;
    }

    .products-list a {
        padding: 10px 15px;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}