.writerFaqSec {
    padding: 80px 0 60px;
    background: #031958;
    margin-bottom: 70px;
}

.writerFaqContainer {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 15px;
}

.writerFaqHeading {
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 150%;
    color: #ffffff;
    margin-bottom: 12px;
}

.writerFaqSubheading {
    text-align: center;
        color: #bec7e1;
    font-weight: 400;
    line-height: 180%;
    font-size: 15px;
    margin-bottom: 40px;
}

.writerFaqList {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.writerFaqItem {
    background: rgba(34, 67, 164, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.writerFaqItem:hover {
    border-color: rgba(44, 131, 255, 0.5);
    background: rgba(34, 67, 164, 0.24);
    box-shadow: 0 4px 22px rgba(34, 67, 164, 0.25);
    transform: translateY(-2px);
}

.writerFaqItem:hover .writerFaqQuestion svg {
    color: #2D96EE;
}

.writerFaqItem.open {
    border-color: #2243A4;
    background: rgba(34, 67, 164, 0.08);
}

.writerFaqQuestion {
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    user-select: none;
}

.writerFaqQuestion svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.writerFaqItem.open .writerFaqQuestion svg {
    transform: rotate(180deg);
    color: #2D96EE;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.writerFaqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease, padding 0.25s ease;
    padding: 0 24px;
    font-size: 14px;
        color: #bec7e1;
    font-weight: 400;
    line-height: 180%;
    -webkit-transition: max-height 0.25s ease, padding 0.25s ease;
    -moz-transition: max-height 0.25s ease, padding 0.25s ease;
    -ms-transition: max-height 0.25s ease, padding 0.25s ease;
    -o-transition: max-height 0.25s ease, padding 0.25s ease;
}

.writerFaqItem.open .writerFaqAnswer {
    max-height: 260px;
    padding: 0 24px 20px;
}

@media (max-width: 767px) {
    .writerFaqSec { padding: 60px 0 40px; }
    .writerFaqHeading { font-size: 26px; }
}

@media (max-width: 480px) {
    .writerFaqHeading { font-size: 22px; }
    .writerFaqQuestion { font-size: 16px; padding: 16px 18px; }
    .writerFaqAnswer { padding: 0 18px; font-size: 14px; }
    .writerFaqItem.open .writerFaqAnswer { padding: 0 18px 16px; }
}
