.carouselContainer {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carouselInner {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carouselItem {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 20px;
    background-color: white;
}

.carouselItem img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.carouselItem a {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #00579c;
    text-decoration: none;
}

.carouselItem p {
    margin-top: 5px;
    font-size: 1rem;
    color: #333;
    margin-bottom: 28px;
}

.carouselFooter {

    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 2;
}

/* DOTS (Indicators) */
.carouselDots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.dot {
    display: block;
    width: 10px;
    height: 10px;
    margin-left: 5px;
    text-indent: -999px;
    background-color: rgba(92, 208, 244, 0.822);
    border-radius: 5px;
    cursor: pointer;
}

.dot:first-child {
    margin-left: 0;
}

.dot.active {
    background-color: #04537d;
}

/* CONTROLS (Arrows) */
.carouselControlsRight {
    display: flex;
    margin-left: auto;
    gap: 6px;
}

.controlBtn {
    background-color: #e6e6e6;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    transition: background-position 0.1s linear;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15),
        0 1px 2px rgba(0, 0, 0, 0.05);
}

.controlBtn:hover,
.controlBtn:focus {
    background-color: #cccccc;
    outline: none;
}

.smallBtn {
    padding: 2px 10px;
    font-size: 11.9px;
    border-radius: 3px;
}