.faq-section {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 100px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq-container {
    background: #fff;
    max-width: 700px;
    width: 95%;
    margin: 0 auto;
    padding: 40px 30px 30px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.faq-container h1 {
    font-size: 2rem;
    color: #181B4B;
    margin-bottom: 24px;
    font-weight: bold;
    text-align: center;
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    margin-bottom: 18px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.08rem;
    font-weight: bold;
    color: #03456D;
    text-align: left;
    cursor: pointer;
    padding: 12px 0;
    transition: color 0.2s;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 12px;
    font-size: 1.2rem;
    color: #181B4B;
    transition: transform 0.2s;
}

.faq-question.open::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f4f8fc;
    padding: 0 12px;
    border-radius: 6px;
    margin-top: 0;
}

.faq-question.open + .faq-answer {
    margin-top: 8px;
    padding: 12px 12px 12px 12px;
}

@media (max-width: 600px) {
    .faq-container {
        padding: 18px 5px 12px 5px;
    }
    .faq-section {
        padding: 80px 0 20px 0;
    }
    .faq-container h1 {
        font-size: 1.2rem;
    }
    .faq-question {
        font-size: 1rem;
    }
}