﻿.accordion-button:not(.collapsed) {
    color: #028565;
    background-color: #f4fced;
    border-color: #f4fced;
}

.aspect-ratio-box {
    position: relative;
    width: 100%;
    padding-top: 100%; /* This creates a 1:1 aspect ratio. Adjust as needed (e.g., 75% for 4:3) */
    overflow: hidden;
}

.aspect-ratio-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the area without distortion */
}
