body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}
.container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
}
header {
    background-color: #002855;
    color: white;
    max-width: 100%;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.banner-logo { 
    /*display:inline-block; */
    /* margin: 0 auto; */
    width: 400px; /* Adjusted width for better sizing */
    height: auto; /* Maintains aspect ratio */
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
.product-categories {
    padding: 40px 0;
    text-align: center;
}
.product-categories h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 0 10px;
}
.product-grid div {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s;
}

.product-grid div:hover {
    transform: translateY(-5px);
}
.product-grid img {
    max-width: 100%;
    height: auto;
    margin-top: auto;
    margin-bottom: auto;
    /* align-items: center; */
    vertical-align: middle;
/*     border-radius: 5px; */
/*     margin-bottom: 15px; */
}

.product-grid-img {
    max-width: 100%;
    height: auto;
    /* margin-top: auto;
    margin-bottom: auto; */
    align-items: center;
    vertical-align: middle;
}

.wholesale-info {
    padding: 40px 20px;
    background-color: #e9ecef;
    text-align: center;
    border-radius: 10px;
}
.wholesale-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
}
footer {
    background-color: #002855;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
}
.contact-info {
    margin-bottom: 20px;
}
.social-buttons {
    margin-top: 20px;
}
.social-buttons a {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 20px;
    color: white;
    background-color: #006dbf;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s;
}
.social-buttons a:hover {
    background-color: #004b80;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px;
    }
    .banner-logo {
        width: 200px;
    }
    nav {
        flex-direction: column;
        gap: 10px;
    }
    .product-grid {
        grid-template-columns: 1fr;
    }
    .wholesale-info, .product-categories {
        padding: 20px 10px;
    }
}
