/* =====================
   HEADING BLOCK
===================== */
.rmt-faq-intro {
    background: #fff;
    padding: 56px 0 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.rmt-faq-intro h1 {
    font-size: 2.6em;
    font-weight: 800;
    color: #0d1b2a;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.rmt-faq-intro p {
    font-size: 1.15em;
    color: #5a6a7a;
    line-height: 1.8;
    max-width: 740px;
}

/* =====================
   FAQ CONTENT WRAPPER
===================== */
.rmt-faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 24px 0 100px;
}

/* =====================
   CATEGORY SECTION
===================== */
.rmt-faq-category {
    margin-bottom: 56px;
}

.rmt-faq-category h2 {
    font-size: 0.78em;
    font-weight: 700;
    color: #1a73e8;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8f0fe;
}

/* =====================
   FAQ ITEM
===================== */
.rmt-faq-item {
    background: #fff;
    border: 1px solid #e4eaf2;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.rmt-faq-item:hover {
    box-shadow: 0 4px 20px rgba(26, 115, 232, 0.10);
    border-color: #b8d0f8;
}

.rmt-faq-item.active {
    border-color: #1a73e8;
    box-shadow: 0 4px 24px rgba(26, 115, 232, 0.13);
}

/* =====================
   QUESTION BUTTON
===================== */
.rmt-faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 20px 28px;
    font-size: 1.08em;
    font-weight: 600;
    color: #0d1b2a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1.45;
}

.rmt-faq-question:hover {
    background: #f4f8ff;
    color: #1a73e8;
}

.rmt-faq-item.active .rmt-faq-question {
    background: #1a73e8;
    color: #fff;
}

/* =====================
   PLUS / MINUS ICON
===================== */
.rmt-faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f0fe;
    color: #1a73e8;
    font-size: 1.35em;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    line-height: 1;
    user-select: none;
}

.rmt-faq-item.active .rmt-faq-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
}

/* =====================
   ANSWER PANEL - smooth slide
===================== */
.rmt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
    padding: 0 28px;
    color: #3d4f62;
    line-height: 1.85;
    font-size: 1.0em;
    background: #fff;
}

.rmt-faq-answer.open {
    max-height: 1200px;
    padding: 4px 28px 24px;
}

.rmt-faq-answer p {
    margin: 0;
}

.rmt-faq-answer strong {
    color: #0d1b2a;
    font-weight: 600;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
    .rmt-faq-intro {
        padding: 36px 20px 28px;
    }

    .rmt-faq-intro h1 {
        font-size: 2em;
    }

    .rmt-faq-intro p {
        font-size: 1.05em;
    }

    .rmt-faq-content {
        padding: 16px 16px 70px;
    }

    .rmt-faq-category {
        margin-bottom: 44px;
    }

    .rmt-faq-question {
        padding: 18px 20px;
        font-size: 1em;
    }

    .rmt-faq-answer {
        font-size: 0.97em;
    }

    .rmt-faq-answer.open {
        padding: 4px 20px 20px;
    }
}
