/* --- Info pages: Support & FAQ / Security / Contact Us --- */

/* FAQ (native <details>/<summary>, no JS needed) */
.faq-details details {
    border: 1px solid #e0e3e8;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
    overflow: hidden;
}
.faq-details summary {
    cursor: pointer;
    padding: 14px 40px 14px 16px;
    font-weight: 600;
    color: #20313c;
    list-style: none;
    position: relative;
    font-size: 14px;
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details summary::after {
    content: "+";
    position: absolute;
    right: 14px;
    top: 11px;
    color: #8B1A1A;
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}
.faq-details details[open] summary { background: #faf6f6; }
.faq-details details[open] summary::after { content: "\2013"; }
.faq-details .faq-answer {
    padding: 0 16px 14px;
    color: #526484;
    font-size: 14px;
    line-height: 1.6;
}
.faq-details .faq-answer p { margin: 0 0 6px; }
.faq-details .faq-answer p:last-child { margin-bottom: 0; }

/* Security checklist */
.sec-check { list-style: none; padding: 0; margin: 0 0 16px; }
.sec-check li {
    padding: 8px 0 8px 30px;
    position: relative;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    border-bottom: 1px solid #f0f1f3;
}
.sec-check li:last-child { border-bottom: none; }
.sec-check li::before {
    content: "\2713";
    position: absolute;
    left: 4px;
    top: 7px;
    color: #1c7a2e;
    font-weight: 700;
}
.security-note {
    background: #fdf3f3;
    border-left: 4px solid #8B1A1A;
    padding: 12px 14px;
    border-radius: 4px;
    color: #5a2a2a;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
}

/* Contact cards + form */
.contact-card {
    border: 1px solid #e0e3e8;
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: #fff;
}
.contact-card .cc-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #8a94a6;
    margin-bottom: 2px;
}
.contact-card .cc-value { font-size: 15px; color: #20313c; font-weight: 600; }
.contact-card .cc-value a { color: #8B1A1A; }
.info-form .form-group { margin-bottom: 12px; }
.info-form textarea { resize: vertical; min-height: 90px; }
.info-form .form-control:focus { border-color: #8B1A1A; box-shadow: 0 0 0 2px rgba(139,26,26,.15); }
