    .slideshow {
        position: relative;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }


    .slide {
        display: none;
    }

    .slide.active {
        display: block;
    }

    .slide-img {
        width: 100%;
        height: 500px;
        object-fit: contain;
        background-color: #f4f7f6;
        border-radius: 6px;
    }

    .slide-desc {
        margin-top: 16px;
        margin-bottom: 0;
    }

    .slide-control-left,
    .slide-control-right {
        position: absolute;
        top: 0;
        height: 500px;
        width: 60px;
        background: rgba(0, 0, 0, 0.25);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .slide-control-left {
        left: 0;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
    }

    .slide-control-right {
        right: 0;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .slideshow:hover .slide-control-left,
    .slideshow:hover .slide-control-right {
        opacity: 1;
    }

    .slide-arrow {
        background: none;
        border: none;
        font-size: 32px;
        font-weight: 300;
        color: #ffffff;
        cursor: pointer;
    }

    .slide-arrow:hover {
        color: rgba(255, 255, 255, 0.7);
    }

    .slide-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .slide-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #cdd5db;
        border: none;
        cursor: pointer;
        padding: 0;
    }

    .slide-dot.active {
        background-color: #0B3C5D;
    }

    .slide-img-wrapper {
        position: relative;
    }
    
    .section-hero .page-img-full {
    max-height: 450px;
    width: auto;
    margin: 0 auto 20px auto;
    display: block;
    }