   
 /* 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;
            }
        }
      
        /* Blog Container */
        .blog-container {
            display: flex;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
        }

        /* Main Content */
        .main-content {
            flex: 3;
            margin-right: 20px;
        }

        /* Featured Post */
        .featured-post {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            margin-bottom: 30px;
        }

        .featured-post img {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .featured-post-content {
            padding: 20px;
        }

        .featured-post h2 {
            margin: 0;
            font-size: 2rem;
            color: #3c92e8;
        }

        .featured-post p {
            margin: 10px 0;
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
        }

        .featured-post a {
            display: inline-block;
            margin-top: 10px;
            color: #3c92e8;
            font-weight: bold;
        }

        .featured-post a:hover {
            text-decoration: underline;
        }

        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .blog-card {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .blog-card-content {
            padding: 20px;
        }

        .blog-card h3 {
            margin: 0;
            font-size: 1.5rem;
            color: #3c92e8;
        }

        .blog-card p {
            margin: 10px 0;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #555;
        }

        .blog-card a {
            display: inline-block;
            margin-top: 10px;
            color: #3c92e8;
            font-weight: bold;
        }

        .blog-card a:hover {
            text-decoration: underline;
        }

        /* Sidebar */
        .sidebar {
            flex: 1;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            height: ;
        }

        .sidebar h3 {
            margin: 0 0 20px;
            font-size: 1.5rem;
            color: #3c92e8;
        }

        .sidebar ul {
            list-style: none;
            padding: 0;
        }

        .sidebar ul li {
            margin-bottom: 10px;
        }

        .sidebar ul li a {
            color: #555;
            transition: color 0.3s ease;
        }

        .sidebar ul li a:hover {
            color: #3c92e8;
        }

        .sidebar .recent-posts {
            margin-top: 0px;
        }

        .sidebar .recent-posts h3 {
            margin-bottom: 15px;
        }

        .sidebar .recent-posts ul li {
            margin-bottom: 15px;
        }

        .sidebar .recent-posts ul li a {
            font-size: 0.9rem;
        }

      
        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-container {
                flex-direction: column;
            }

            .main-content {
                margin-right: 0;
            }

            .sidebar {
                margin-top: 30px;
            }
        }