.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem 4rem 1rem;
    padding-top: 90px;
}
.faq-hero {
    text-align: center;
    margin-bottom: 2.5rem;
}
.faq-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--primary-color, #2563eb);
    margin-bottom: 0.7rem;
}
.faq-subtitle {
    font-size: 1.1rem;
    color: #5faee3;
    margin-bottom: 0;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.faq-item {
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(44,62,80,0.10);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item.open {
    box-shadow: 0 8px 32px rgba(44,62,80,0.13);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color, #2563eb);
    text-align: left;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}
.faq-question::after {
    content: '\25BC';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 1.1rem;
    color: #5faee3;
    transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f4f8fb;
    color: #4b5563;
    font-size: 1.05rem;
    padding: 0 1.5rem;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    max-height: 300px;
}
@media (max-width: 600px) {
    .faq-container {
        padding: 1.5rem 0.3rem 2rem 0.3rem;
    }
    .faq-title {
        font-size: 1.5rem;
        padding-top: 25px;
    }
    .faq-question {
        font-size: 1rem;
        padding: 1rem 1rem;
    }
    .faq-answer {
        font-size: 0.98rem;
        padding: 0 1rem;
    }
    .faq-item.open .faq-answer {
        padding: 0.7rem 1rem 1.1rem 1rem;
    }
}
