body {
    margin: 0;
    font-family: Arial, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    background-color: #f4f4f4;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    padding: 0 15px;
}

/* Banner Section */
.banner {
    background-color: #2b5c6b;
    color: white;
    padding: 50px 0;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.banner-text h1 {
    font-size: 4vw;
    margin-bottom: 20px;
}

.banner-text p {
    font-size: 2vw;
    margin-bottom: 40px;
}

.btn {
    background-color: #ffab40;
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 1.5vw;
    text-transform: uppercase;
}

.banner-image img {
    width: 80%;
    max-width: 500px;
}

/* Shop Button */
.shop-button-container {
    background-color: rgb(125, 142, 157);
    position: relative;
    top: 0;
    left: 0;
    margin: 10px auto;
}

.shop-btn {
    background-color: #508a04;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

/* Products Section */
.products {
    padding: 50px 0;
}

.products h2 {
    text-align: center;
    font-size: 6vw;
    margin-bottom: 30px;
}

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.product-text h3 {
    font-size: 4vw;
    margin-bottom: 10px;
}

.product-text p {
    font-size: 2vw;
    color: #777;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
}

/* About Section */
.about {
    background-color: #2b5c6b;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.about img {
    width: 80%;
    max-width: 500px;
    border-radius: 15px;
}

.about p {
    font-size: 3vw;
    line-height: 1.8;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer a {
    color: #ffab40;
    margin: 0 10px;
    font-size: 2vw;
}

/* Responsive */
@media (min-width: 768px) {
    .banner-container {
        flex-direction: row;
    }

    .banner-text {
        max-width: 50%;
    }

    .banner-text h1 {
        font-size: 48px;
    }

    .banner-text p {
        font-size: 24px;
    }

    .btn {
        font-size: 18px;
    }

    .products h2 {
        font-size: 42px;
    }

    .product-item {
        flex-direction: row;
        justify-content: space-between;
    }

    .product-text {
        width: 45%;
    }

    .product-text h3 {
        font-size: 36px;
    }

    .product-text p {
        font-size: 22px;
    }

    .about img {
        width: 50%;
    }

    .about p {
        font-size: 26px;
    }

    footer a {
        font-size: 20px;
    }
}

@media (min-width: 1200px) {
    .banner-container {
        max-width: 1680px;
    }

    .products h2 {
        font-size: 36px;
    }

    .product-text h3 {
        font-size: 32px;
    }

    .product-text p {
        font-size: 20px;
    }

    .about p {
        font-size: 24px;
    }
}