.sc-251113f0-container {
    font-family: system-ui, -apple-system, sans-serif;
    padding: 4rem 2rem;
    overflow: hidden;
    /* Full-bleed/fullscreen breakout styling */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
}

.sc-251113f0-row {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.sc-251113f0-left {
    flex: 1 1 500px;
}

.sc-251113f0-right {
    flex: 0 0 500px;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sc-251113f0-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border-radius: 50rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid currentColor;
    margin-bottom: 1.5rem;
}

.sc-251113f0-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sc-251113f0-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.sc-251113f0-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.sc-251113f0-bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.4;
}

.sc-251113f0-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

/* Inquiry Card (CTA Box) Styles */
.sc-251113f0-cta-box {
    background-color: #ffffff;
    border-radius: 1.5rem;
    padding: 2.2rem 2.5rem;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(19, 15, 64, 0.04);
}

.sc-251113f0-cta-box p {
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0 0 1.8rem 0;
    font-weight: 600;
}

.sc-251113f0-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sc-251113f0-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(78, 81, 128, 0.25);
}

/* Carousel Styles */
.sc-251113f0-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.sc-251113f0-carousel-slides {
    position: relative;
    width: 500px;
    height: 500px;
    overflow: hidden;
}

.sc-251113f0-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.sc-251113f0-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.sc-251113f0-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dots Nav */
.sc-251113f0-dots-nav {
    display: flex;
    gap: 0.75rem;
}

.sc-251113f0-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.sc-251113f0-dot.active {
    transform: scale(1.15);
}

/* ===== Responsive for Mobile ===== */
@media (max-width: 768px) {
    .sc-251113f0-carousel-slides {
        width: 100% !important;
        height: 250px !important;
    }

    .sc-251113f0-right {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .sc-251113f0-carousel-wrapper {
        max-width: 100% !important;
    }

    .sc-251113f0-slide img {
        object-fit: contain;
    }
}