.faq-section {
    padding: 60px 20px;
    background-color: #f8f8f8;
}

.faq-section .faq-section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.faq-section .faq-section-title::after {
    content: "";
    width: 100px;
    height: 2px;
    background-color: #004aad;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

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

.faq-item {
    border-bottom: 1px solid #004aad;
    padding: 15px 0;
}

.faq-question {
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: bold;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    color: #333;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.2s;
}

.faq-answer {
    display: none;
    padding: 10px 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}