/* FAQ Page Specific Styles */
.faq-modern {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 0 60px;
}

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    padding: 22px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
    transition: all 0.3s ease;
    outline: none !important;
}

.faq-question:hover {
    color: var(--main-color2);
}

.faq-question i {
    font-size: 1.1rem;
    color: #bbb;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question.active {
    color: var(--main-color2);
    border-bottom: 1px solid #f9f9f9;
}

.faq-question.active i {
    transform: rotate(135deg);
    color: var(--main-color2);
}

.faq-answer {
    display: none;
    padding: 25px 35px 30px;
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 1.05rem;
    background: #fff;
}

.faq-answer p,
.faq-answer span,
.faq-answer li,
.faq-answer h3,
.faq-answer h2 {
    font-family: inherit !important;
}

.faq-answer h2,
.faq-answer h3 {
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-answer h3 {
    font-size: 1.25rem;
}

.faq-answer strong {
    color: #333;
}

.faq-answer ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 10px;
}

/* Title Style */
.faq-title {
    font-weight: 800;
    color: #222;
    letter-spacing: -1px;
}

.faq-title span {
    color: var(--main-color2);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 1.05rem;
    }

    .faq-answer {
        padding: 20px 25px;
        font-size: 0.95rem;
    }
}
