.faq-section {
    --primary-color: #172271;
    --secondary-color: #03a9f4;
    --text-dark: #333;
    --border-radius: 12px;
    clear: both;
    width: 100%;
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section .accordion {
    background-color: #ffffff;
    color: var(--primary-color);
    cursor: pointer;
    padding: 20px 25px;
    width: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
    outline: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.faq-section .accordion:hover {
    background-color: #f0f7ff;
    border-color: var(--secondary-color);
}

.faq-section .accordion.active {
    background-color: var(--primary-color);
    color: #ffffff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-bottom: 0;
}

.faq-section .accordion:after {
    content: '\f107';
    font-family: 'FontAwesome';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-section .accordion.active:after {
    content: '\f106';
    color: #ffffff;
}

.faq-section .panel {
    padding: 0 25px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    border: 1px solid rgba(0,0,0,0.05);
    border-top: none;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-section .panel-content {
    padding: 20px 0;
    color: var(--text-dark);
    line-height: 1.8;
}

.faq-section .panel-content p {
    margin: 0 0 0.75rem;
}

.faq-section .panel-content p:last-child {
    margin-bottom: 0;
}

.faq-section .panel-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-section .panel-content li {
    margin-bottom: 8px;
}

.faq-section .panel-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-section .panel-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-section .accordion {
        font-size: 15px;
        padding: 15px 20px;
    }
}
