.body-container {
    padding-top: 0 
}


.body-container > .row {
    padding-top: 0;
    margin-top: 0;
}


.body-container > .row > .col-12:first-child {
    margin-top: 0;
}

    /* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.main-header {
    text-align: center;
    color: #0000ff;
    padding: 0rem;
}

.main-header h1 {
    font-size: 2.5rem;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    margin: 0;
}

.section-title {
    text-align: center;
    color: #0000ff;
    font-size: 2rem;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    margin: 2rem 0;
}

/* Flexbox Layout for Sections */
.content-section,
.card-container,
.product-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding:5px;
}

.card {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 8px;
    box-sizing: border-box;
    width: 100%; /* Default to 100% width for mobile */
    text-align: center;
}

/* Images within cards */
.card img {
    max-width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

/* Product images section */
.product-images img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.product-images img:hover {
    transform: scale(1.05);
}

/* --- Media Query for Desktop --- */
@media (min-width: 768px) {
    /* Three-column layout for desktop */
    .content-section .card {
        width: calc(33.333% - 14px);
    }
    
    .card-container .card {
        width: calc(33.333% - 14px);
    }
    
    /* Specific section with four columns */
    .content-section:nth-of-type(2) .card {
        width: calc(25% - 15px);
    }
    
    .card img {
        float: center;
        margin: 0 10px 10px 0;
    }
}   