.modern-faq-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-sizing: border-box;
}

.modern-faq-item {
    background: #FFFFFF;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eeeeee;
    margin: 0;
}

.modern-faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.modern-faq-item.active {
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 168, 72, 0.3);
}

.modern-faq-header {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    cursor: pointer;
    position: relative;
    text-align: left;
    background: transparent;
}

.modern-faq-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.modern-faq-question {
    margin: 0;
    padding: 0;
    font-weight: 700;
    font-size: 20px;
    flex: 1;
    transition: color 0.3s ease;
}

.modern-faq-icon {
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.modern-faq-icon svg {
    width: 1em;
    height: 1em;
}

.modern-faq-item.active .modern-faq-icon {
    transform: rotate(180deg);
}

.modern-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    padding: 0 30px;
}

.modern-faq-item.active .modern-faq-body {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 30px;
    padding-left: 95px;
}

.modern-faq-answer {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .modern-faq-header { padding: 15px 20px; }
    .modern-faq-number { width: 35px; height: 35px; font-size: 14px; margin-right: 15px; }
    .modern-faq-question { font-size: 17px; }
    .modern-faq-item.active .modern-faq-body { padding-left: 20px; padding-right: 20px; }
}