:root {
            /* Official CEGAANA Colors */
            --primary-color: #C0311B;
            --secondary-color: #124E78;
            --accent: #FFE34B;
            --primary-dark: #eb692b;

            /* Backup Colors */
            --backup-primary: #8C1D40;
            /* Maroon-ish */
            --backup-secondary: #002D62;
            /* Navy Blue */
            --backup-accent: #f0ad4e;

            --bg-color: #f4f7f6;
            --text-color: #333333;
            --card-bg: #ffffff;
        }

        body {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        header {
            background-color: var(--secondary-color);
            color: white;
            padding: 3rem 1rem;
            text-align: center;
            border-bottom: 6px solid var(--primary-color);
        }

        header h1 {
            margin: 0;
            font-size: 2.8rem;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }

        .header-logo {
            height: 120px;
            border-radius: 5%;
            background: white;
            padding: 2px;
        }

        header p {
            margin: 15px auto 0;
            font-size: 1.2rem;
            max-width: 700px;
            opacity: 0.9;
        }

        .container {
            max-width: 1100px;
            margin: -30px auto 0;
            padding: 0 2rem 3rem;
            position: relative;
            z-index: 10;
        }

        .section-title {
            color: var(--secondary-color);
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 10px;
            margin-bottom: 25px;
            font-size: 2rem;
            margin-top: 3rem;
        }

        .scholarship-info {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 2rem;
            border-top: 5px solid var(--primary-color);
        }

        .scholarship-info h3 {
            margin-top: 0;
            color: var(--primary-color);
            font-size: 1.8rem;
        }

        .stats-grid {
            display: flex;
            gap: 20px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .stat-box {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            padding: 15px 20px;
            border-radius: 8px;
            flex: 1;
            min-width: 200px;
            text-align: center;
        }

        .stat-box strong {
            display: block;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }

        .stat-box span {
            font-size: 0.9rem;
            color: #666;
        }

        .grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.8rem;
        }

        @media (min-width: 768px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .card {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
            border: 1px solid #eef0f2;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        .card h4 {
            color: var(--secondary-color);
            margin-top: 0;
            font-size: 1.3rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 15px;
        }

        .badge {
            display: inline-block;
            background-color: #28a745;
            color: white;
            font-size: 0.75rem;
            padding: 3px 8px;
            border-radius: 12px;
            vertical-align: middle;
            margin-left: 8px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tax-info {
            background-color: var(--secondary-color);
            color: white;
            padding: 2rem;
            border-radius: 10px;
            margin-top: 3rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 45, 98, 0.2);
        }

        .tax-info h3 {
            margin-top: 0;
            color: var(--accent);
        }

        footer {
            background-color: #1a1a1a;
            color: #aaa;
            text-align: center;
            padding: 2rem 0;
            margin-top: 4rem;
            font-size: 0.9rem;
        }

        .btn {
            display: inline-block;
            background-color: var(--primary-color);
            color: white;
            padding: 10px 24px;
            text-decoration: none;
            border-radius: 5px;
            margin-top: 15px;
            font-weight: bold;
            transition: background 0.2s;
        }

        .btn:hover {
            background-color: #701330;
        }

        ul.custom-list {
            list-style-type: none;
            padding-left: 0;
            margin: 15px 0;
        }

        ul.custom-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        ul.custom-list li::before {
            content: '✓';
            color: var(--primary-color);
            font-size: 1.1em;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

        .batch-highlight {
            background-color: rgba(240, 173, 78, 0.1);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-top: 1.5rem;
        }
