    .border-frame-latihan {
        border: 10px solid purple;
        padding: 10px;
        background: white;
        box-shadow: 0 15px 20px rgba(0, 0, 0, 0.4);
        border-radius: 15px;
        transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    }

    /* Hover Effect */
    .image-container:hover .border-frame-latihan {
        transform: scale(1.05) rotate(2deg);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    }

    .description-box {
        max-width: 1000px;
        border-radius: 15px;
        box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
        background: linear-gradient(135deg, rgb(255, 204, 0), rgb(255, 145, 56));
    }

    .title-latihan {
        font-size: 45px;
        line-height: 1.4;
        letter-spacing: 2px;
        color: #2C3E50;
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .info-latihan {
        font-size: 24px;
        line-height: 1.4;
    }

    .main-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .small-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

     /* Responsif untuk skrin 1366px */
     @media (max-width: 1366px) {

        .info-latihan {
            font-size: 24px !important;;
            line-height: 1.4;
        }
    }

    /* Responsif untuk 768px ke bawah */
    @media (max-width: 768px) {
        .info-latihan { font-size: 22px !important; }
        .main-image, .small-image { width: 90%; }
    }

    /* Responsif untuk 480px ke bawah */
    @media (max-width: 480px) {
        .info-latihan { font-size: 20px !important; }
    }
