html, body {
    overflow-y: hidden;
    height: 100%;
}
.carousel-container {
    display: flex;
    margin-top: 10%;
    position: relative;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.carousel {
    width: 100%;
}
.carousel-image {
    width: 30%; 
    height: auto;
    margin-left: 12.8%; 
}
.carousel-item {
    display: none; 
    position: relative;
}
.carousel-item.active {
    display: block;
}
.arrow {
    font-size: 2rem;
    cursor: pointer;
    color: black;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}
.left-arrow {
    left: 10%;
}
.right-arrow {
    right: 10%;
}
.image-description {
    display: flex;
    flex-direction: column;
    width: 40%;
    height: auto;
    text-align: left;
    padding-left: 0%;
    margin-left: -50%;
    margin-top: -3.5%;
    padding-top: 1%;
}
.image-description h2 {
    font-size: 2rem;
    margin-bottom: 5%; 
    line-height: 1.8;
}
.image-description p {
    font-size: 1rem;
    font-weight: bold;
    font-family: "SUIT-Regular";
    line-height: 1.5;
    padding-top: 1%;
}
.hover-link {
    color: black;
    text-decoration: none;
}
.hover-link:hover {
    color: #FF9D00;
}
.arrow:hover {
    color: #FF9D00;
}
.image-text {
    position: absolute;
    top: 14%;
    left: 20.3%;
    width: auto;
    text-align: left;
}
.text-link {
    font-size: 1.5rem;
    color: black;
    text-decoration: underline;
}
.text-link:hover {
    color: #FF9D00;
}
@media screen and (max-width: 767px) {
    html, body {
        overflow-y: scroll;
    }
    .carousel-container {
        display: flex;
        margin-top: 30%;
        position: absolute;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .carousel {
        width: 100%;
    }
    .carousel-image {
        width: 87%; 
        height: auto;
        margin-left: 6%; 
        justify-content: center;
    }
    .carousel-item {
        display: none;
        position: relative;
    }
    .carousel-item.active {
        display: block;
    }
    .arrow {
        font-size: 2.5rem;
        cursor: pointer;
        color: black;
        position: fixed;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        opacity: 25%;
    }
    .left-arrow {
        left: 10%;
    }
    .right-arrow {
        right: 10%;
    }
    .image-description {
        display: flex;
        flex-direction: column;
        width: 90%; 
        height: auto;
        text-align: left;
        padding-left: 0%;
        margin-left: -94%;
        margin-top: 130%;
        padding-top: 1%; 
    }
    .image-description h2 {
        font-size: 2rem;
        margin-bottom: 5%; 
        line-height: 1.8;
    }
    .image-description p {
        font-size: 1rem;
        font-weight: bold;
        font-family: "SUIT-Regular";
        line-height: 1.5;
        padding-top: 1%;
    }
    .hover-link {
        color: black;
        text-decoration: none;
    }
    .hover-link:hover {
        color: #FF9D00;
    }
    .arrow:hover {
        color: #FF9D00;
    }
    .image-text {
        position: absolute;
        top: 12%;
        left: 6.3%;
        width: auto;
        text-align: left;
    }
    .text-link {
        font-size: 1.5rem;
        color: black;
        text-decoration: underline;
    }
    .text-link:hover {
        color: #FF9D00;
    }}