* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    background: #f5f5f5;
}

/* TOP BAR */
.top-bar {
    background: #0a4d2c;
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    margin-right: 10px;
}

nav a {
    margin: 0 10px;
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.btn {
    background: green;
    color: white;
    padding: 10px 15px;
    border: none;
}

/* HERO */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: url('images/bg.jpg') no-repeat center/cover;
    padding: 40px;
    color: white;
}

.hero-text h1 {
    font-size: 40px;
    color: #1b5e20;
}

.hero-text h3 {
    margin: 10px 0;
}

.hero-buttons button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
}

.call {
    background: green;
    color: white;
}

.whatsapp {
    background: white;
    color: green;
}

/* HERO IMAGES */
.hero-img {
    position: relative;
}

.cow {
    width: 250px;
}

.bag {
    width: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.iso {
    width: 100px;
    position: absolute;
    top: -20px;
    right: 100px;
}

/* PRODUCTS */
.products {
    padding: 40px 20px;
    text-align: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
}

.card img {
    width: 100%;
}

.card button {
    margin-top: 10px;
    padding: 8px;
    background: green;
    color: white;
    border: none;
}

/* STATS */
.stats {
    display: flex;
    justify-content: space-around;
    background: green;
    color: white;
    padding: 20px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #0a4d2c;
    color: white;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 10px;
    }
}