/* ==========================================================================
           CSS RESET & BASE STYLES
    ========================================================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fbfd;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ==========================================================================
           HEADER & NAVIGATION
           ========================================================================== */
        header {
            background-color: #ffffff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Placeholder for the school logo */
        .logo-placeholder {
            width: 50px;
            height: 50px;
            background-color: #003366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 11px;
            text-align: center;
        }

        .school-name {
            font-size: 1.4rem;
            color: #003366;
            font-weight: bold;
        }

        nav ul {
            display: flex;
            gap: 20px;
        }

        nav ul li a {
            font-weight: 600;
            color: #555;
            transition: color 0.3s ease;
        }

        nav ul li a:hover {
            color: #003366;
        }

        /* ==========================================================================
           HERO SECTION
           ========================================================================== */
        .hero {
            background-color: #003366;
            color: #ffffff;
            padding: 80px 20px;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* ==========================================================================
           MAIN CONTENT SECTIONS
           ========================================================================== */
        section {
            padding: 60px 0;
        }

        section:nth-child(odd) {
            background-color: #ffffff;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            color: #003366;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: #ff9900;
            margin: 10px auto 0;
        }

        /* Section Headings for Disclosures */
        h3.disclosure-head {
            background-color: #003366;
            color: white;
            padding: 10px 15px;
            margin-top: 40px;
            margin-bottom: 15px;
            border-radius: 4px;
            font-size: 1.1rem;
            text-transform: uppercase;
        }

        h4.sub-head {
            color: #d32f2f;
            margin: 20px 0 10px 0;
            font-weight: bold;
            border-bottom: 2px solid #eee;
            padding-bottom: 5px;
        }

        /* ==========================================================================
           TABLE STYLES (For CBSE Disclosures)
           ========================================================================== */
        .cbse-table-container {
            overflow-x: auto;
            margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background-color: #ffffff;
            min-width: 600px; /* Ensures tables don't squish too much on mobile */
        }

        th, td {
            padding: 12px 15px;
            border: 1px solid #ddd;
            text-align: left;
            font-size: 0.95rem;
        }

        th {
            background-color: #e3f2fd;
            color: #003366;
            font-weight: bold;
        }

        tr:nth-child(even) {
            background-color: #f9fbfd;
        }

        .btn-link {
            color: #0056b3;
            font-weight: 600;
            text-decoration: underline;
        }

        .btn-link:hover {
            color: #ff9900;
        }

        /* ==========================================================================
           CONTACT & FOOTER
           ========================================================================== */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .contact-info {
            background: #ffffff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .contact-info h3 {
            color: #003366;
            margin-bottom: 15px;
        }

        footer {
            background-color: #001a33;
            color: #ffffff;
            text-align: center;
            padding: 20px;
            font-size: 0.9rem;
        }

        /* ==========================================================================
           RESPONSIVE DESIGN (Mobile)
           ========================================================================== */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-wrap: wrap;
                justify-content: center;
                gap: 10px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .school-name {
                font-size: 1.2rem;
                text-align: center;
            }

            th, td {
                font-size: 0.85rem;
                padding: 10px;
            }
        }