.section-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
}

.section-3-container {
    width: 100%;
    display: flex;
    justify-content: center;
}


/* Add slider css here */
.section-3-carousel {
    width: 100%;
    max-width: 50%;
    height: 981px;
}

.section-3-carousel img {
    width: 100%;
    height: inherit;
    object-fit: cover;
    display: block;
}

.section-3-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 50%;
}

.section-3-text-container {
    display: flex;
    flex-direction: column;
    max-width: 674px;
}

.section-3-text-title {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 45px;
    margin-bottom: 20px;
}

.section-3-text-1 {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 28px;
    margin-bottom: 20px;
}

.section-3-card-text-bullet-point {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 17px;
    line-height: 28px;
}

.section-3-card-text-bullet-point::before {
    content: "";
    flex: 0 0 auto;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #000;
    margin-top: 0.6em;
}

.section-3-link {
    font-family: 'Comfortaa', sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: white;
    padding: 8px 12px;
    background-color: #C52D23;
    border-radius: 14px;
    margin-top: 18px;
    max-width: fit-content;
}

/* === Layout / sizing === */
.carousel {
    width: 100%;
    max-width: 50%;
    height: 981px;
    position: relative;
    overflow: hidden;
}

/* === Slides wrapper === */
.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === Dots / indicators === */
.carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #C52D23;
    background: white;
    cursor: pointer;
    padding: 0;
}

.carousel-dot.active {
    background: #C52D23;
    border: 1px solid white;
}