:root {
            --heading: #002C3E;
            --subheading: #0B74B5;
            --text: #000000;
            --pointer: #142d43;
            --border: #dde2ea;
            --shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
            --radius: 14px;
            --card-bg: #E5F3FF;
            --muted: #6b7280;
            --accent: #0B74B5;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background: #ffffff;
            color: var(--text);
            line-height: 1.5;
        }

        /* MAIN CONTENT AREA WITH SIDE GAPS */
        .page-wrap {
            max-width: 1120px;
            margin: 0 auto;
            padding: 2.2rem 1.4rem 2.8rem;

        }

        @media (max-width: 1200px) {
            .page-wrap {
                padding-left: 2rem;
                padding-right: 2rem;
            }
        }

        /* HEADER + SHORT INTRO */
        .page-title {
            margin-bottom: 1.4rem;
        }

        .page-title h2 {
            font-family: "Merriweather", serif;
            font-size: clamp(2rem, 2.6vw, 2.3rem);
            color: var(--heading);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 0.45rem;
        }

        .page-title span {
            font-size: 0.95rem;
            color: var(--muted);
        }

        .title-icon-circle {
            display: inline-flex;
            width: 28px;
            height: 28px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #E5F3FF;
            border: 1px solid #cfe4ff;
        }

        .key-points {
            margin-top: 0.5rem;
            list-style: none;
            font-size: 0.9rem;
        }

        .key-points li {
            display: flex;
            gap: 0.4rem;
            margin-bottom: 0.15rem;
            align-items: flex-start;
        }

        .key-points i {
            font-size: 0.75rem;
            color: var(--pointer);
            margin-top: 0.18rem;
        }

        /* GENERIC CARD */
        .card {
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            padding: 0.9rem 1rem;
            box-shadow: var(--shadow);
            margin-bottom: 0.9rem;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .card:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 18px 34px rgba(15, 23, 42, 0.16);
        }

        h4.section-heading {
            font-family: "Merriweather", serif;
            font-size: 1.05rem;
            color: var(--subheading);
            font-weight: 600;
            margin-bottom: 0.35rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .heading-icon {
            width: 20px;
            height: 20px;
            border-radius: 999px;
            background: #ffffff;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--pointer);
        }

        p {
            font-size: 0.9rem;
            color: var(--text);
        }

        /* GRID CARDS FOR SCHOLARSHIPS & INFO */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 0.7rem;
            margin-top: 0.3rem;
        }

        .mini-card {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #dde2ea;
            padding: 0.6rem 0.7rem;
            font-size: 0.86rem;
        }

        .mini-title {
            font-weight: 600;
            color: var(--heading);
            margin-bottom: 0.1rem;
            font-size: 0.9rem;
        }

        .mini-text {
            color: var(--muted);
            font-size: 0.85rem;
        }

        ul.simple-list {
            margin-left: 1rem;
            list-style: disc;
            font-size: 0.88rem;
            margin-top: 0.3rem;
        }

        ul.simple-list li {
            margin-bottom: 0.16rem;
        }

        .link-list {
            margin-top: 0.35rem;
            font-size: 0.88rem;
        }

        .link-list a {
            color: var(--accent);
            text-decoration: none;
        }

        .link-list a:hover {
            text-decoration: underline;
        }

        /* COMPLAINT FORM */
        .complaint-form {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 0.6rem 0.9rem;
            margin-top: 0.4rem;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
            font-size: 0.86rem;
        }

        .form-field label {
            font-weight: 500;
            color: var(--pointer);
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            padding: 0.4rem 0.45rem;
            font-size: 0.86rem;
            font-family: inherit;
        }

        .form-field textarea {
            min-height: 80px;
            resize: vertical;
        }

        .form-full {
            grid-column: 1 / -1;
        }

        .submit-row {
            margin-top: 0.5rem;
            display: flex;
            justify-content: flex-start;
        }

        .primary-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.55rem 1.1rem;
            border-radius: 999px;
            border: none;
            background: var(--accent);
            color: #ffffff;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
        }

        .primary-btn i {
            font-size: 0.9rem;
        }

        .small-note {
            margin-top: 0.35rem;
            font-size: 0.8rem;
            color: var(--muted);
        }

        /* MID-DAY MEAL TABLE */
        .table-wrap {
            margin-top: 0.3rem;
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid #dbe2ea;
            background: #ffffff;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.86rem;
        }

        thead {
            background: #ecf5ff;
        }

        th,
        td {
            padding: 0.4rem 0.5rem;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        th {
            color: var(--heading);
            font-weight: 600;
            font-size: 0.86rem;
        }

        tbody tr:nth-child(even) {
            background: #f9fafb;
        }

        .menu-note {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 0.35rem;
        }

        .menu-link {
            font-size: 0.85rem;
            margin-top: 0.25rem;
        }

        .menu-link a {
            color: var(--accent);
            text-decoration: none;
        }

        .menu-link a:hover {
            text-decoration: underline;
        }