 .syllabus-section {
        background-color: #f9f9f9;
    }

    .syllabus-item {
        background-color: #ddd;
           padding: 0px 0px 15px 0px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .syllabus-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .syllabus-image img {
        width: 100%;
        height: 200px;
        /* Fixed height for consistent image size */
        object-fit: cover;
        margin-bottom: 250px;
        transition: transform 0.3s ease;
    }

    .syllabus-image img:hover {
        transform: scale(1.05);
    }

    .syllabus-title {
        color: #333;
        margin-bottom: 10px;
    }

    .syllabus-download {
        color: #a70000;
        text-decoration: none;
        font-weight: 500;
    }

    .syllabus-download:hover {
        text-decoration: underline;
    }

    /* Responsive Layout */
    @media (max-width: 768px) {
        .syllabus-item {
            margin-bottom: 30px;
        }
    }