/* FAQ Section Styles */
.faq-section {
    font-family: 'Inter', sans-serif;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0px 20px 40px 20px;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
}

/* Details/Summary Styling */
.faq-item {
    background-color: #F5F6FA;
    border-radius: 20px;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    list-style: none; /* Removes default arrow */
}

/* Remove default marker (cross-browser) */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-answer {
    margin-top: 15px;
    line-height: 1.6;
    color: #333;
    padding-top: 15px;
}

/* Toggle Icon Container */
.toggle-icon {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: #7424D1;
    border-radius: 50%;
    flex-shrink: 0;
    margin-left: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG Icons */
.toggle-icon svg {
    position: absolute;
    width: 14px;
    height: 14px;
    transition: opacity 0.3s ease;
}

/* Plus icon visible by default */
.icon-plus {
    opacity: 1;
}

/* Minus icon hidden by default */
.icon-minus {
    opacity: 0;
}

/* Open state styling */
.faq-item[open] .toggle-icon {
    background-color: #5a30c0;
}

.faq-item[open] .icon-plus {
    opacity: 0;
}

.faq-item[open] .icon-minus {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        margin-top: 50px;
    }
    .faq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .faq-item {
        padding: 15px;
    }
    
    .faq-question {
        font-size: 14px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .toggle-icon {
        width: 25px;
        height: 25px;
    }
    
    .toggle-icon svg {
        width: 12px;
        height: 12px;
    }
}


