.dropdown-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dropdown-group {
    min-width: 90%;
    max-width: 90%;
}

.dropdown-container {
    width: 100%;
    margin: 20px auto;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.dropdown-header {
    padding: 0px 15px 0px 0px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ccc;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-header span img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0px;
}

.dropdown-header-title h1 {
    font-size: 26px;
    text-align: center;
}

.toggle-icon {
    font-weight: bold;
    color: black;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0px 15px;
    background-color: #fff;
    margin: 0;
    border-radius: 15px;
}

.dropdown-content span {
    display: inline-block;
    margin: 15px 0px;
}

.dropdown-container.collapsed .dropdown-content {
    padding-top: 0;
    padding-bottom: 0;
}

/* Extra small (xs) and smaller: < 576px */
@media (max-width: 576px) {
    .dropdown-group {
        min-width: 90%;
        max-width: 90%;
    }
    
    .dropdown-header-title h1 {
        font-size: 20px;
    }

    /* Hide images for screens smaller than 576px */
    .dropdown-header span img {
        display: none;
    }
}

/* Small (sm): ≥ 576px */
@media (min-width: 576px) {
    .dropdown-group {
        min-width: 85%;
        max-width: 85%;
    }
    
    .dropdown-header-title h1 {
        font-size: 22px;
    }

    .dropdown-header span img {
        display: block; /* Ensure images are shown on larger screens */
    }
}

/* Medium (md): ≥ 768px */
@media (min-width: 768px) {
    .dropdown-group {
        min-width: 75%;
        max-width: 75%;
    }
    
    .dropdown-header-title h1 {
        font-size: 24px;
    }
}

/* Large (lg): ≥ 992px */
@media (min-width: 992px) {
    .dropdown-group {
        min-width: 70%;
        max-width: 70%;
    }
    
    .dropdown-header-title h1 {
        font-size: 26px;
    }
}

/* Extra Large (xl): ≥ 1200px */
@media (min-width: 1200px) {
    .dropdown-group {
        min-width: 65%;
        max-width: 65%;
    }
    
    .dropdown-header-title h1 {
        font-size: 28px;
    }
}

/* XX-Large (xxl): ≥ 1400px */
@media (min-width: 1400px) {
    .dropdown-group {
        min-width: 60%;
        max-width: 60%;
    }
    
    .dropdown-header-title h1 {
        font-size: 30px;
    }
}

/* XXX-Large (xxxl): ≥ 1800px */
@media (min-width: 1800px) {
    .dropdown-group {
        min-width: 50%;
        max-width: 50%;
    }
    
    .dropdown-header-title h1 {
        font-size: 32px;
    }
}
