.faq-section-modern {
    margin: 2rem auto;
    padding: 0;
}
.faq-container {
    padding: 0;
}
.faq-title {
    text-align: center;
    color: #111;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item-modern {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}
.faq-item-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: #667eea;
}
.faq-checkbox {
    display: none;
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    user-select: none;
}
.faq-question:hover {
    background: rgba(102, 126, 234, 0.1);
}
.faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
}
.faq-checkbox:checked + .faq-question .faq-toggle-icon {
    transform: rotate(45deg);
    background: #667eea;
    color: white;
}
.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(248, 249, 250, 0.8);
}
.faq-checkbox:checked + .faq-question + .faq-answer-wrapper {
    max-height: 1000px;
    transition: max-height 0.5s ease-in;
}
.faq-answer {
    padding: 1rem;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}
.faq-checkbox:checked + .faq-question {
    background: #667eea;
    color: white;
}
.faq-answer-wrapper {
    animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 768px) {
    .faq-container {
        padding: 1rem;
    }
    .faq-title {
        font-size: 18px;
        line-height: 1.6em;
    }
    .faq-question {
        padding: 1rem;
        font-size: 16px;
        line-height: 1.6em;
    }
    .faq-answer {
        padding: 1rem;
        font-size: 14px;
        line-height: 1.6em;
    }
}
.faq-checkbox:checked + .faq-question {
    animation: pulse 0.5s ease-in-out;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}