/* ── Site-wide navigation bar ─────────────────────────────────────────── */
.site-nav {
    background: #fff;
    border: 1px solid #d6deea;
    border-radius: 14px;
    padding: 12px 18px;
    margin-bottom: 16px;
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-logo img {
    display: block;
    width: auto;
    height: 100px;
    max-width: 200px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .site-logo img {
        height: 36px;
        max-width: 170px;
    }
}

.site-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.site-links a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #2f4a70;
    text-decoration: none;
    transition: background 0.14s, color 0.14s;
}

.site-links a:hover {
    background: #eef4ff;
    color: #1e5aa8;
}

.site-links a.active {
    background: #1e5aa8;
    color: #fff;
}

/* ── Page hero banner ─────────────────────────────────────────────────── */
.page-hero {
    background: #fff;
    border: 1px solid #d6deea;
    border-radius: 14px;
    padding: 32px 28px;
    margin-bottom: 16px;
    text-align: center;
}

.page-hero h1 {
    margin: 10px 0 8px;
    font-size: 32px;
    font-weight: 900;
    color: #12315e;
}

.page-hero p {
    margin: 0;
    color: #55627b;
    font-size: 15px;
}

/* ── Page content wrapper ─────────────────────────────────────────────── */
.page-content {
    max-width: 100%;
    margin-bottom: 24px;
}

.page-content-narrow {
    max-width: 780px;
    margin-inline: auto;
}

/* ── Page sections ────────────────────────────────────────────────────── */
.page-section {
    background: #fff;
    border: 1px solid #d6deea;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 14px;
}

.page-section h2 {
    margin: 0 0 12px;
    font-size: 18px;
    font-weight: 800;
    color: #12315e;
    padding-bottom: 8px;
    border-bottom: 2px solid #e8f0fb;
}

.page-section h3 {
    margin: 16px 0 6px;
    font-size: 14px;
    font-weight: 700;
    color: #2a4070;
}

.page-section p {
    margin: 0 0 10px;
    line-height: 1.7;
    color: #374560;
}

.page-section p:last-child {
    margin-bottom: 0;
}

.page-section code {
    background: #f0f4fa;
    border: 1px solid #d0daea;
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 13px;
}

.page-section a {
    color: #1e5aa8;
    font-weight: 600;
}

.page-list {
    margin: 8px 0 0 20px;
    padding: 0;
    line-height: 1.9;
    color: #374560;
}

.page-list li {
    margin-bottom: 4px;
}

/* ── Values grid (About page) ─────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.value-card {
    background: #f7faff;
    border: 1px solid #dce8f8;
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
}

.value-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.value-card h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 800;
    color: #12315e;
}

.value-card p {
    margin: 0;
    font-size: 13px;
    color: #4a5d7a;
    line-height: 1.5;
}

/* ── Contact page ─────────────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
}

@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #12315e;
    margin-bottom: 2px;
}

.contact-detail p {
    margin: 0;
    color: #374560;
    font-size: 14px;
}

.whatsapp-cta {
    display: inline-block;
    margin-top: 4px;
    padding: 10px 18px;
    border-radius: 10px;
    background: #25d366;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s;
}

.whatsapp-cta:hover {
    background: #1aad52;
}

/* ── Footer links nav ─────────────────────────────────────────────────── */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 12px;
    font-weight: 600;
    color: #bfd2f2;
    text-decoration: none;
    transition: color 0.14s;
}

.footer-links a:hover {
    color: #ffffff;
}
