 
        a {
            text-decoration: none;
            color: inherit;
        }

        /* Header */
        .header {
            background-image: url('images/admission-header.jpg') !important; /* Add a relevant background image */
            background-size: cover !important;
            background-position: center !important;
            height: 400px !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .header h1 {
            font-size: 2rem;
            position: relative;
            z-index: 2;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            .header {
                height: 200px !important;
            }

            .header h1 {
                font-size: 2rem;
            }
        }

        /* Contact Section */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            gap: 20px;
        }

        .contact-form {
            flex: 1;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
        }

        .contact-form h2 {
            margin: 0 0 20px;
            font-size: 1.8rem;
            color: #3c92e8;
        }

        .contact-form label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
            color: #333;
        }

        .contact-form input[type="text"],
        .contact-form input[type="email"],
        .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }

        .contact-form textarea {
            resize: vertical;
            height: 150px;
        }

        .contact-form button {
            background-color: #3c92e8;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #2a6bb0;
        }

        .contact-form button[type="reset"] {
            background-color: #ccc;
            margin-left: 10px;
        }

        .contact-form button[type="reset"]:hover {
            background-color: #999;
        }

        .contact-form #responseMessage {
            margin-top: 15px;
            font-size: 1rem;
            color: #28a745;
        }

        /* Map Section */
        .map-section {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .map-section iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Latest News Section */
        .latest-news {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-top: 30px;
        }

        .latest-news h4 {
            margin: 0 0 20px;
            font-size: 1.5rem;
            color: #3c92e8;
        }

        .latest-news .box {
            margin-bottom: 15px;
            padding: 10px;
            border-bottom: 1px solid #eee;
        }

        .latest-news .box h2 {
            margin: 0;
            font-size: 1.1rem;
            color: #333;
        }

        .latest-news .box span {
            font-size: 0.9rem;
            color: #777;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }

            .map-section {
                height: 300px;
            }
        }