     /* General Styles */
    .box-section {
        max-width: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .box-header {
        max-width: 90%;
        width: 100%;
        border-radius: 15px;
        margin-bottom: -20px;
        z-index: 2;
        position: relative;
        text-align: center;
        padding: 15px;
        color: white;
        font-size: 24px;
    }

    .box-content {
        max-width: 100%;
        width: 100%;
        min-height: 200px;
        border-radius: 15px;
        padding: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        z-index: 1;
        position: relative;
    }

    /* Pendidikan */
    .pendidikan-header {
        background-image: linear-gradient(to right, rgb(140, 140, 251), rgb(55, 55, 255));
    }

    .pendidikan-content {
        background: linear-gradient(135deg, #8EC5FC, #E0C3FC);
    }

    /* Murid */
    .murid-header {
        background-image: linear-gradient(to right, #FF4C4C, #B22222);
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    }

    .murid-content {
        background: linear-gradient(135deg, #FFD3A5, #FD6585);
    }

    /* Responsiveness */
    .pendidikan-murid-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 60px;
    }

    @media (max-width: 1366px) {
        .info-kandungan h2 {
            font-size: 24px !important;
        }
        .box-section {
            max-width: 45%;
        }
        .pendidikan-murid-wrapper {
            flex-direction: row;
            justify-content: space-around;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .pendidikan-murid-wrapper {
            flex-direction: column;
            align-items: center;
            margin-top: 10px;
        }

        .box-section {
            max-width: 90%;

        }

        .box-content {
            min-height: 180px;
        }

        .info-kandungan h2 {
            font-size: 22px !important;
        }
    }

    @media (max-width: 480px) {
        .pendidikan-murid-wrapper {
            flex-direction: column;
            align-items: center;
            margin-top: 5px;
        }

        .murid-section{
            margin-top: -15px;
        }

        .info-kandungan {
            padding: 10px !important;
            margin-top: 30px !important;
        }

        .info-kandungan h2 {
            font-size: 20px !important;
        }

        .box-section {
            max-width: 100%;
        }

        .box-content {
            min-height: 160px;
        }

        .box-section h3 {
            font-size: 22px !important;
        }
    }
