/* Collapsible Section Styling */
collapsible-section {
    display: block;
    margin: 1.5rem 0;  /* spacing between each banner */
    font-family: 'Inter', sans-serif;
}

.collapsible-button {
    background-color: #ffddba; /* Soft yellow tone from your palette */
    color: #7b694e;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    text-align: left;
    width: 100%;
    cursor: pointer;
    display: block;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    position: relative; /* Enable positioning for arrow */
}

.collapsible-button::after {
    content: "▼"; /* Down arrow symbol */
    font-size: 12px; /* Adjust arrow size */
    color: #8F7A5A; /* Arrow color matching text */
    position: absolute;
    right: 15px; /* Space between arrow and edge */
    top: 50%;
    transform: translateY(-50%);
}

.collapsible-button:hover {
    background-color: #DFD3C3; /* Slightly darker yellow for hover effect */
    border-radius: 10px; /* Keep rounded corners on hover */
}

.collapsible-content {
    display: none;
    margin: 0 20px 0 20px;  /* top, right, bottom, left */
    list-style-type: inside;
    font-size: 1.1rem;
    line-height: 1.7rem;
}

.collapsible-content li {
    margin-bottom: 8px; /* Space between list items */
    padding: 10px;
    background-color: #f1f1f1;
}

/* Responsive Styling */
@media (max-width: 768px) {
    /* Collapsible sections adjustments */
    .collapsible-button {
        font-size: 16px; /* Smaller font size for mobile */
        padding: 10px;
    }
}
