.mano-faq-page {
    overflow: hidden;
    color: #071f3d;
    background: #fff;
    direction: rtl;
}

.mano-faq-page *,
.mano-faq-page *::before,
.mano-faq-page *::after {
    box-sizing: border-box;
}

.mano-faq-container {
    width: calc(100% - 48px);
    max-width: 1000px;
    margin: 0 auto;
}

.mano-faq-content {
    padding: 64px 0 72px;
}

.mano-faq-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 32px;
}

.mano-faq-heading__line {
    width: 4px;
    height: 54px;
    flex: 0 0 4px;
    margin-top: 4px;
    border-radius: 4px;
    background: #e30613;
}

.mano-faq-heading h2 {
    margin: 0 0 7px;
    color: #071f3d;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.35;
}

.mano-faq-heading p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.9;
}

.mano-faq-list {
    display: grid;
    gap: 12px;
}

.mano-faq-item {
    overflow: hidden;
    border: 1px solid #dce5ed;
    border-radius: 8px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.mano-faq-item[open] {
    border-color: rgba(227, 6, 19, .35);
    box-shadow: 0 10px 30px rgba(7, 31, 61, .06);
}

.mano-faq-item summary {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 22px;
    color: #071f3d;
    font-size: 16px;
    font-weight: 800;
    line-height: 1.8;
    cursor: pointer;
    list-style: none;
}

.mano-faq-item summary::-webkit-details-marker {
    display: none;
}

.mano-faq-item summary i {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 50%;
    background: #f3f6f9;
}

.mano-faq-item summary i::before,
.mano-faq-item summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 2px;
    border-radius: 2px;
    content: '';
    background: #e30613;
    transform: translate(-50%, -50%);
    transition: transform .2s ease;
}

.mano-faq-item summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mano-faq-item[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0);
}

.mano-faq-answer {
    padding: 0 22px 20px;
    color: #526b83;
    font-size: 14px;
    line-height: 2.1;
}

.mano-faq-answer p {
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid #edf1f5;
}

.mano-faq-contact {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 30px;
    padding: 24px 28px;
    border-radius: 8px;
    background: #071f3d;
}

.mano-faq-contact div {
    display: grid;
    gap: 5px;
}

.mano-faq-contact strong {
    color: #fff;
    font-size: 18px;
    font-weight: 800;
}

.mano-faq-contact span {
    color: #bdc8d4;
    font-size: 13px;
}

.mano-faq-contact a {
    min-width: 148px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 0 22px;
    border-radius: 6px;
    color: #fff;
    background: #e30613;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}

.mano-faq-contact a:hover {
    color: #fff;
    background: #bd0010;
    transform: translateY(-2px);
}

@media (max-width: 700px) {
    .mano-faq-container {
        width: calc(100% - 28px);
    }

    .mano-faq-content {
        padding: 42px 0 50px;
    }

    .mano-faq-heading h2 {
        font-size: 29px;
    }

    .mano-faq-heading p {
        font-size: 13px;
    }

    .mano-faq-item summary {
        min-height: 66px;
        gap: 14px;
        padding: 15px 16px;
        font-size: 14px;
    }

    .mano-faq-answer {
        padding: 0 16px 17px;
        font-size: 13px;
    }

    .mano-faq-contact {
        flex-direction: column;
        align-items: stretch;
        padding: 23px 20px;
        text-align: center;
    }

    .mano-faq-contact a {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mano-faq-item,
    .mano-faq-item summary i::after,
    .mano-faq-contact a {
        transition: none;
    }
}
