﻿/* faq.css - FAQ page specific styles */
/* Shared styles (modal, nav, buttons, renew, info-block, footer, flex-item, etc.) are in site.css */

/* Page-specific background */
body { background: url("/img/bg-lightl-881.webp") repeat; }

/* FAQ content styles */
.faq-content {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 0;
    background-color: transparent;
    color: #213244;
}

.faq-content h1, .faq-content h2, .faq-content h3 {
    font-weight: 600;
    color: #18314a;
    margin-bottom: 10px;
}

.faq-content h1 {
    font-size: 36px;
    margin-top: 30px;
    text-align: center;
}

.faq-content h2 {
    font-size: 28px;
    border-bottom: 3px solid #2b77b5;
    padding-bottom: 10px;
    margin-top: 40px;
    color: #1f5f92;
    text-align: center;
}

.faq-content h3 {
    font-size: 22px;
    margin-top: 20px;
    color: #1d3852;
    text-align: left;
}

.faq-content p {
    color: #243648;
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: left;
}

.faq-content li,
.faq-content strong,
.faq-content b {
    color: #243648;
}

.faq-content ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.faq-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.faq-content ul li:before {
    content: '\2022';
    color: #2980b9;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: 0;
}

.faq-content .note {
    background-color: #ecf0f1;
    padding: 15px;
    border-left: 6px solid #3498db;
    margin: 30px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-content .note p {
    margin: 0;
    font-size: 16px;
}

.faq-content a {
    color: #0a4f96;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.12em;
    text-underline-offset: 0.16em;
}

.faq-content a:hover,
.faq-content a:focus {
    color: #083d74;
}

.faq-content a:focus-visible {
    outline: 2px solid #0a4f96;
    outline-offset: 2px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .faq-content h1 { font-size: 28px; }
    .faq-content h2 { font-size: 24px; }
    .faq-content p { font-size: 14px; }
    .faq-content .note { padding: 10px; }
}