.carousel-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    position: relative;
    width: 64%; 
    height: 76vh; 
    margin: 12vh auto; 
}
.carousel {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}
.carousel-image:first-of-type {
    width: 460px;
    height: 460px;
    object-fit: cover; 
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
}
.arrow {
    font-size: 3rem;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    color: black;
}
.left-arrow {
    left: -24%;
}
.right-arrow {
    right: -24%;
}
.image-info {
    position: absolute;
    bottom: 3%;
    left: 2%;
    font-size: 0.8rem;
    font-family: "SUIT-Light";
    display: flex;
    align-items: center;
}
#page-number, #total-pages {
    font-family: "SUIT-Bold";
}
#image-title {
    font-family: "SUIT-Bold";
    margin-left: 10px;
}
.bold-text {
    font-family: "SUIT-Light";
    margin-left: 8px;
}
.image-description {
    position: absolute;
    top: 68%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    width: 100%;
    max-width: 1228px;
    color: black;
    z-index: 10;
}
.image-description .title {
    font-family: "SUIT-ExtraBold";
    font-size: 24px;
    margin-bottom: 8px;
}
.image-description .desc {
    font-family: "SUIT-Regular"; 
    font-size: 16px;
    line-height: 1.6; 
}
.student-info {
    position: fixed;
    bottom: 3%;
    right: 2%;
    text-align: right;
    color: black; 
    font-family: "SUIT-Regular"; 
    font-size: 0.8rem;
}
.student-info div {
    margin-bottom: 5px;
}
.student-info a {
    color: black;
    text-decoration: none; 
    transition: color 0.3s ease;
}
.student-info a:hover {
    color: #FF9D00;
}
.arrow:hover {
    color: #FF9D00;
}
@media screen and (max-width: 767px) {
    .carousel-image:not(:first-of-type) {
        width: 100vw;
        height: 100vh;
        object-fit: contain;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .move-down {
        position: absolute; 
        top: 200%; 
        left: 0;
        right: 0;
        margin: 0 auto;
    } 
    .carousel-image:first-of-type {
        width: 100vw; 
        height: 100vh; 
        position: relative; 
        object-fit: cover;
        top: 0;
    }
    .left-arrow, .right-arrow {
        position: fixed;
        bottom: 40%; 
        transform: translateY(0); 
        top: unset; 
        z-index: 10; 
    }
    .left-arrow {
        left: 5%; 
    }
    .right-arrow {
        right: 5%;
    }
    .carousel-container {
        width: 98%; 
        height: auto;
        margin: 20vh auto;
        position: relative;
        justify-content: center;
    }
    .carousel-image {
        width: 100%; 
        height: auto; 
        object-fit: contain;
        position: relative;
    }
    .carousel-image:not(:first-of-type) {
        width: 100vw;
        height: 100vh;
        object-fit: contain;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .image-description.second-image-up {
        top: 70%;
    }
    .carousel {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    }
    .arrow {
    font-size: 3rem;
    cursor: pointer;
    color: white;
    mix-blend-mode: difference;
    transition: color 0.3s ease;
    }
    .arrow:hover {
    color: #FF9D00;
    }
    .image-info {
    top:-76%;
    font-size: 0.7rem; 
    }
    #page-number, #total-pages {
    font-family: "SUIT-Bold";  
    }
    #image-title {
    margin-left: 10px;
    }
    .bold-text {
    font-family: "SUIT-Light";
    margin-left: 8px;
    }
    .image-description {
    top: 96%;
    max-width: 98%;
    padding: 0 0px; 
    }
    .image-description .title {
    font-size: 20px;
    }
    .image-description .desc {
    font-size: 14px; 
    }
    .student-info {
    position: absolute;
    top: 9%;
    font-size: 0.7rem;
    }
    .student-info div {
    margin-bottom: 5px;
    }
    .student-info a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
    }
    .student-info a:hover {
    color: #FF9D00; 
    }
    .arrow:hover {
    color: #FF9D00;
    }}