/* Enhanced dropdown styling that works across all devices */

/* Basic dropdown container */
.dropdown-section {
    margin: 20px 0 !important;
    border-top: 1px solid #eee !important;
    border-bottom: 1px solid #eee !important;
    padding: 20px 0 !important;
}

/* Toggle button styling */
.dropdown-toggle {
    background: none !important;
    border: none !important;
    width: 100% !important;
    text-align: left !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
}

.dropdown-toggle h2 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: #6b4e2f !important;
}

.dropdown-arrow {
    color: #6b4e2f !important;
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg) !important;
}

/* Dropdown content */
.dropdown-content {
    display: none;
    overflow: hidden;
    transition: max-height 0.3s ease !important;
}

.dropdown-content.active {
    display: block !important;
}

/* Style for options list */
.options-list {
    padding: 10px 0 !important;
}

.option-item {
    margin-bottom: 20px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.option-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.option-item h3 {
    color: #6b4e2f !important;
    margin-bottom: 10px !important;
    font-size: 1.2rem !important;
}

.option-details p {
    margin: 5px 0 !important;
    font-size: 0.95rem !important;
}

.option-details strong {
    font-weight: bold !important;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .dropdown-toggle {
        padding: 15px 0 !important;
    }
    
    .dropdown-toggle h2 {
        font-size: 1.3rem !important;
    }
    
    .option-item h3 {
        font-size: 1.1rem !important;
    }
    
    .option-details p {
        font-size: 0.9rem !important;
    }
}

/* Smaller mobile screens */
@media (max-width: 480px) {
    .dropdown-toggle h2 {
        font-size: 1.2rem !important;
    }
}