
.faq-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.faq-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #333333;
    text-align: center;
    margin-bottom: 32px;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-item {
    background: transparent;
    border: none;
}
.faq-question {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: #333333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.faq-question:hover {
    background: #eef2ff;
}
.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #0047AB;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: transparent;
    padding: 0 24px;
}
.faq-answer p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 12px 0 16px;
}
.faq-answer strong {
    font-weight: 600;
    color: #0047AB;
}
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
@media (max-width: 768px) {
    .faq-title {
        font-size: 28px;
    }
    .faq-question {
        font-size: 16px;
        padding: 14px 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-icon {
        margin-left: 12px;
    }
}
