/* Shared layout for FAQ-style static pages (offer, privacy, etc.) */
.static-content {
    line-height: 1.6;
}

.static-content .static-date {
    color: #888;
    font-size: 0.95em;
    margin-bottom: 24px;
}

.static-content .static-section {
    margin-bottom: 32px;
}

.static-content .static-section h2 {
    color: var(--text-color, #2c3e50);
    margin-bottom: 12px;
    font-size: 20px;
    border-bottom: 2px solid #0066CC;
    padding-bottom: 8px;
}

.static-content ul {
    margin-left: 20px;
}

.static-content p,
.static-content li {
    text-align: justify;
}

.static-content .static-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color, #e5e7eb);
    font-size: 0.92em;
    color: #666;
}

.static-back-link {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 20px;
    background: #0066CC;
    color: #fff !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.static-back-link:hover {
    background: #0052a3;
}

.static-content a {
    color: #0066CC;
}

[data-theme="dark"] .static-content .static-date,
[data-theme="dark"] .static-content .static-footer {
    color: #aaa;
}
