<style>
    /* Dropdown Banner */
    .dropdown-banner {
        max-width: 100%;
        padding: 20px;
        border: 1px solid #ccc;
        background-color: #f9f9f9;
        margin-bottom: 2rem;
        border-radius: 8px;
    }

    h2 {
        font-size: 1.8rem;
        color: #333;
        margin-bottom: 1.2rem;
    }

    /* New Flexbox for Dropdowns */
    .dropdown-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 1.5rem;
    }

    .dropdown {
        flex: 1;
    }

    .dropdown label {
        display: block;
        font-size: 0.875rem;
        margin-bottom: 0.35rem;
        color: #333;
    }

    .dropdown ul {
        list-style: none;
        padding: 0;
        margin: 0;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: white;
        max-width: 100%;
    }

    .dropdown ul li {
        padding: 10px;
        cursor: pointer;
        font-size: 0.875rem;
        transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition */
    }

    .dropdown ul li:hover {
        background-color: #e8825d;
    }

    .dropdown ul li.selected {
        background-color: #e6480f;
        color: white;
    }

    /* Collapsible Button (hidden) */
    .collapsible {
        display: none; /* Hide the collapsible button */
    }

    /* Collapsible Content */
    .content {
        padding: 1rem;
        display: none;
        overflow: hidden;
        border: 1px solid #ccc;
        border-top: none;
        font-size: 0.875rem;
        background-color: #f1f1f1;
        border-radius: 0 0 4px 4px;
    }

    .content p {
        margin: 0;
        color: #333;
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .dropdown-container {
            flex-direction: column;
        }

        h2 {
            font-size: 1.5rem;
        }

        .dropdown label {
            font-size: 0.8rem;
        }

        .collapsible {
            font-size: 0.9rem;
        }

        .content {
            font-size: 0.8rem;
        }
    }
</style>

	
	
