body {
    overflow-x: hidden;
    }
    .ec-sliderRole {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    transform: none;
    padding: 0;
    margin-bottom: 0 !important;
    background: #FFF !important;
    }
    .main_visual {
    width: 100%;
    height: auto !important;
    aspect-ratio: 16 / 7;
    max-height: initial !important;
    overflow: hidden;
    background-color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    }
    
    .main_visual .item {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    flex-shrink: 0;
    }
    .item.active {
    opacity: 1;
    }
    .main_visual .item picture {
        width: 100%;
        height: 100%;
    }
    .main_visual .item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    }
    
    /* Hero Dots Navigation */
    .hero-dots {
    position: absolute;
    bottom: 32px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 30;
    }
    
    .hero-dot {
    display: block;
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    }
    
    .hero-dot.active {
    background: #fff;
    border: 2px solid #000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }
    
    .hero-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #000;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    }
    .ev-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 20;
    pointer-events: none;
    }
    .ev-hero-overlay-content {
    position: absolute;
    top: 50%;
    right: 207px;
    transform: translateY(-50%);
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    }
    .ev-hero-logo {
    width: 591px;
    max-width: 100%;
    margin-bottom: 18px;
    }
    .ev-hero-tagline {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
    }
    .ev-hero-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 32px;
    width: 230px;
    height: 48px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    pointer-events: auto;
    position: relative;
    padding: 0;
    }
    .ev-hero-btn .ev-hero-btn-chevron {
    font-size: 14px;
    margin-right: 12px;
    display: inline-flex;
    align-items: center;
    }
    .ev-hero-btn span {
    position: relative;
    z-index: 2;
    }
    .ev-hero-btn:after {
    display: none;
    }
    .ev-hero-btn:hover, .ev-hero-btn:focus {
    background: #fff;
    color: #b8002f;
    }
    
    /* Scroll Down Indicator */
    .ev-hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 30;
    cursor: pointer;
    pointer-events: auto;
    }
    .ev-hero-scroll-arrow {
    width: 11px;
    height: 66px;
    animation: bounce 2s ease-in-out infinite;
    }
    .ev-hero-scroll-text {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    }
    
    /* Bounce Animation */
    @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-7px);
    }
    }
    @media (max-width: 900px) {
    .ec-sliderRole {
        margin-top: 70px;
    }
    .main_visual {
    aspect-ratio: 5 / 6;
    }
    
    /* Mobile dots positioning */
    .hero-dots {
        bottom: 16px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
        padding: 0;
        box-sizing: border-box;
    }
    }