.why-container {
    width: 80vw;
    margin: 6.35rem auto 5rem;
    background-color: #FFFFFF;
}

.why-title {
    font-size: 2rem;
    font-weight: 600;
    color: #303030;
    text-align: center;
    margin-bottom: 3.75rem;
    position: relative;
}

.why-carousel-container {
    box-sizing: border-box;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
}

.why-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.why-carousel-slide {
    box-sizing: border-box;
    width: 100% !important;
    display: flex;
    flex-shrink: 0;
    background: #FFFFFF;
    border-radius: 5px;
    margin-bottom: .625rem;
}

.why-carousel-content {
    display: flex;
    width: 100%;
    align-items: center;
}

.why-carousel-image {
    flex: 0 0 48%;
    padding: .625rem;
}

.why-carousel-image img,
.why-carousel-image video {
    width: 100%;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-carousel-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 20px 40px;
}

.why-carousel-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #C00000;
    line-height: 1.3;
}

.why-carousel-description {
    font-size: 1rem
    line-height: 1.8;
    color: #545454;
}

.why-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2.5rem;
    position: relative;
}

.why-carousel-btn {
    background: transparent;
    color: #DDDDDD;
    border: none;
    width: 2rem;
    height: 2rem;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.why-carousel-btn:hover {
    color: rgba(192,0,0,0.6);
}

.why-carousel-prev,
.why-carousel-next {
    margin-left: 20px;
    margin-right: 20px;
}

.why-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.why-carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
    position: relative;
}

.why-carousel-indicator:hover {
    background: #e0e0e0;
}

.why-carousel-indicator.active {
    border-color: rgba(192,0,0,0.3);
    background-color: rgba(192,0,0,0.3);
}

@media (max-width: 992px) {
    .why-container {
        padding: 2rem;
    }

    .why-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        padding-bottom: 15px;
    }

    .why-carousel-container {
        padding: 30px 0;
    }

    .why-carousel-content {
        flex-direction: column;
    }

    .why-carousel-image {
        padding: 15px;
        width: 100%;
    }

    .why-carousel-image img {
        height: 300px;
    }

    .why-carousel-text {
        padding: 0px 20px 10px;
        margin-top: -1rem;
    }

    .why-carousel-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .why-carousel-description {
        font-size: 1rem;
        height: 4.0625rem;
    }

    .why-carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .why-container {
        width: 92vw;
        padding: 0rem;
        margin: 2rem auto;
    }

    .why-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .why-carousel-image img {
        height: 15.625rem;
    }

    .why-carousel-text {
        padding: .625rem 1rem;
    }

    .why-carousel-indicators {
        gap: 1.25rem;
    }

    .why-carousel-indicator {
        width: .625rem;
        height: .625rem;
    }

    .why-carousel-controls {
        margin-top: 1rem;
    }
}