/* ============================================================
   Vision / Mission / Goals / Core Values – Shared Styles
   ============================================================ */

.vmg-page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
    color: #1a2a4a;
    line-height: 1.7;
}

.vmg-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 35px 40px;
    box-shadow: 0 8px 30px rgba(0, 20, 40, 0.06);
    text-align: center;
}

.vmg-container h1 {
    font-size: 34px;
    font-weight: 700;
    color: #0a2a4a;
    margin: 0 0 30px 0;
    border-bottom: 3px solid #c9a227;
    padding-bottom: 14px;
    display: inline-block;
    letter-spacing: -0.3px;
}

/* ----- Vision / Mission text ----- */
.vmg-text {
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 0;
}

.vmg-text p {
    font-size: 22px;
    font-weight: 400;
    color: #1a2a4a;
    line-height: 1.8;
    margin: 0;
    padding: 10px 0;
    font-style: italic;
    position: relative;
}

/* Subtle quote marks for Vision */
.vmg-text.vision p::before {
    content: "“";
    font-size: 60px;
    color: #c9a227;
    position: absolute;
    left: -20px;
    top: -10px;
    opacity: 0.3;
    font-family: Georgia, serif;
}
.vmg-text.vision p::after {
    content: "”";
    font-size: 60px;
    color: #c9a227;
    position: absolute;
    right: -20px;
    bottom: -20px;
    opacity: 0.3;
    font-family: Georgia, serif;
}

/* ----- Goals & Objectives Grid ----- */
.vmg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
    text-align: left;
}

.vmg-card {
    background: #fafcff;
    border: 1px solid #e2edf7;
    border-radius: 12px;
    padding: 24px 28px;
}

.vmg-card h2 {
    color: #003366;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 16px 0;
    border-left: 5px solid #c9a227;
    padding-left: 16px;
}

.vmg-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmg-card li {
    padding: 6px 0 6px 24px;
    position: relative;
    border-bottom: 1px solid #f0f4fa;
    font-size: 15px;
}
.vmg-card li:last-child {
    border-bottom: none;
}
.vmg-card li::before {
    content: "–";
    color: #c9a227;
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* ----- Core Values ----- */
.vmg-core {
    max-width: 800px;
    margin: 20px auto 0;
    text-align: left;
}

.vmg-core ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vmg-core li {
    padding: 8px 0 8px 28px;
    position: relative;
    border-bottom: 1px solid #f0f4fa;
    font-size: 16px;
    line-height: 1.6;
}
.vmg-core li:last-child {
    border-bottom: none;
}
.vmg-core li::before {
    content: "●";
    color: #c9a227;
    font-weight: 700;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* ----- Back Button ----- */
.vmg-back {
    text-align: center;
    margin-top: 30px;
}

.vmg-back a {
    display: inline-block;
    color: #2b7be4;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 12px;
    border: 1px solid #d6e2f0;
    border-radius: 30px;
    transition: background 0.2s;
}

.vmg-back a:hover {
    background: #f0f4fa;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 640px) {
    .vmg-container {
        padding: 30px 20px 30px;
    }
    .vmg-container h1 {
        font-size: 28px;
    }
    .vmg-text p {
        font-size: 18px;
    }
    .vmg-text.vision p::before,
    .vmg-text.vision p::after {
        font-size: 40px;
    }
    .vmg-text.vision p::before {
        left: 0;
    }
    .vmg-text.vision p::after {
        right: 0;
    }
    .vmg-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .vmg-card {
        padding: 18px 20px;
    }
    .vmg-core li {
        font-size: 15px;
    }
}