#Blue_Gallery_Section {
    border-color: #1d4ed8;
    background-color: #dae2f8;
}
#Blue_Gallery_Section .SubSectionTitle {color: #1d4ed8;}
#Blue_Gallery_Section h3 { 
    color: #1d4ed8;
}
.GallerySubSection{
    border-color: #1d4ed8;
}

/* Gallery */
.GalleryGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}
.GalleryGrid img {
    border-radius: 10px;
    aspect-ratio: 1;
    object-fit: cover;
}

/* Simple image carousel placeholder */
.Image_Carousel {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}
.Image_Carousel img {
    height: 120px;
    border-radius: 8px;
    flex-shrink: 0;
}
.Image_Carousel button {
    background: #600193;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
}