body {
    background: red !important;
}

/* HERO */
.hero-section {
    position: relative;
    height: 500px;
    background: url('../images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: white;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 40px;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-content p {
    margin-bottom: 20px;
}

.btn {
    background: #2e7d32;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

/* FEATURES */
.features {
    background: #f5f5f5;
    padding: 20px 0;
}

.features .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    font-weight: bold;
    color: #2e7d32;
}

/* ABOUT */
.about {
    padding: 60px 20px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.stats {
    display: flex;
    gap: 20px;
}

.stats div {
    background: #e8f5e9;
    padding: 30px;
    text-align: center;
}

/* PRODUCTS */
.products {
    background: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.card {
    background: white;
    padding: 30px;
    border-top: 4px solid #2e7d32;
}

/* MOBILE */
@media (max-width: 768px) {

    .hero-section {
        height: 250px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .features .container {
        flex-direction: column;
        gap: 10px;
    }

    .product-grid {
        flex-direction: column;
    }
}