﻿.rns-fq-section {
    padding: 5rem 1rem;
    background: #f8fafc;
}

.rns-fq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* HEADER */
.rns-fq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rns-fq-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.rns-fq-subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #64748b;
}

/* FAQ LIST */
.rns-fq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rns-fq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.rns-fq-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.rns-fq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.rns-fq-question-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    padding-right: 2rem;
}

.rns-fq-icon {
    color: #2563eb;
    flex-shrink: 0;
}

.rns-fq-svg {
    width: 20px;
    height: 20px;
}

/* ANSWER */
.rns-fq-answer {
    padding: 0 1.5rem 1.5rem;
}

.rns-fq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

/* FOOTER MESSAGE */
.rns-fq-footer {
    margin-top: 4rem;
    text-align: center;
}

.rns-fq-footer-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.rns-fq-footer-text {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #64748b;
}

/* CTA */
.rns-fq-cta {
    margin-top: 2rem;
    text-align: center;
}

.rns-fq-cta-text {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #64748b;
}

.rns-fq-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.rns-fq-cta-button:hover {
    background: #1d4ed8;
    color: #FFFFFF;
    transform: translateY(-1px);
}
