:root {
    --brand-dark: #1f2937;
    --brand-dark-2: #111827;
    --brand-primary: #0d6efd;
    --brand-primary-hover: #0b5ed7;
    --page-bg: #f4f6f9;
    --card-bg: #ffffff;
    --border-color: #dee2e6;
    --text-main: #212529;
    --text-muted: #6c757d;
}

body {
    background: var(--page-bg);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}

.site-topbar {
    background: var(--brand-primary);
    color: #fff;
    padding: 8px 0;
}

.site-topbar a {
    color: #fff;
}

.site-navbar {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand-dark-2));
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.navbar .nav-link {
    color: rgba(255,255,255,0.88);
    font-weight: 500;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: #fff;
}

.btn-primary-brand {
    background: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.btn-primary-brand:hover {
    background: var(--brand-primary-hover);
    border-color: var(--brand-primary-hover);
    color: #fff;
}

.page-wrap {
    padding: 24px 0 40px;
}

.page-header {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

.page-header h1 {
    margin: 0 0 8px;
    font-size: 2rem;
    font-weight: 700;
}

.page-header p {
    margin: 0;
    color: var(--text-muted);
}

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    height: 100%;
}

.content-card h2,
.content-card h3 {
    font-weight: 700;
    margin-bottom: 12px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(13, 110, 253, 0.12);
    color: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 14px;
}

.action-card {
    display: block;
    color: inherit;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.action-card:hover {
    transform: translateY(-2px);
    color: inherit;
}

.list-clean {
    margin: 0;
    padding-left: 18px;
}

.list-clean li {
    margin-bottom: 8px;
}

.info-table td {
    padding: 8px 0;
    vertical-align: top;
}

.info-table td:first-child {
    width: 170px;
    font-weight: 700;
}

.notice-box {
    border-left: 4px solid var(--brand-primary);
    background: #eef5ff;
    border-radius: 10px;
    padding: 14px 16px;
}

.site-footer {
    background: var(--brand-dark-2);
    color: rgba(255,255,255,0.92);
    margin-top: 32px;
}

.site-footer a {
    color: rgba(255,255,255,0.92);
}

.site-footer a:hover {
    color: #fff;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.text-footer {
    color: rgba(255,255,255,0.85);
}

.footer-divider {
    border-color: rgba(255,255,255,0.15);
}

.form-required {
    color: #dc3545;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 991px) {
    .page-header h1 {
        font-size: 1.6rem;
    }
}
.site-logo {
    height: 42px;
    width: auto;
    max-width: 42px;
    object-fit: contain;
    display: block;
}

.navbar-brand {
    gap: 0.35rem;
    line-height: 1;
}

.navbar-brand span {
    white-space: nowrap;
}

@media (max-width: 991px) {
    .site-logo {
        height: 36px;
        max-width: 36px;
    }
}
.page-header p {
    margin: 0;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.05rem;
}

.page-header .mb-3 {
    margin-bottom: 1rem !important;
}
.page-header-image {
    width: 100%;
    max-width: 100%;
    max-height: 420px;
    height: auto;
    display: block;
    margin: 8px auto 0;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
}
.page-header-text {
    max-width: 820px;
    margin: 0 auto;
}

.page-header-text p {
    text-align: left;
}
.footer-logo-wrap {
    margin-top: 1rem;
    text-align: center;
}

.footer-logo {
    max-width: 120px;
    width: 100%;
    height: auto;
    display: inline-block;
    object-fit: contain;
}
.page-header-text a {
    font-weight: 600;
}