/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background: url('images/banner.jpg') no-repeat center center/cover;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

header h1 {
    font-size: 3rem;
    margin: 10px 0;
}

header p {
    font-size: 1.5rem;
}

nav {
    background-color: #003366;
    padding: 10px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}


section {
    padding: 50px 20px;
}

.section-with-bg {
    background-color: #e0e0e0;
}

.product-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(100px, 32%));
    gap: 1.5%; */
}

.product-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-top: 15px;
}


.about {
    width: 100%;
    margin: auto 0;
}

@media (min-width: 700px){
    .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 32%));
        gap: 1.5%;
    }

    .product-item {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .about {
        width: 70%;
        margin: auto 0;
    }
    
    header {
        background: url('images/banner.jpg') no-repeat center center/cover;
        color: white;
        padding: 100px 20px;
        text-align: center;
    }
 }

.product-item>img {
    width: 100%;
}

.product-item:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 20px;
}