.ars-slider {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    position: relative;
}

.ars-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.ars-slide {
    min-width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.ars-inner {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.ars-left, .ars-right {
    width: 50%;
    padding: 60px;
}

.ars-left {
    font-family: Helvetica;
    font-style: italic;
    font-size: 25px;
    line-height: 1.4;
}

.ars-quote {
    font-size: 4rem;
    display: block;
    margin-bottom: 10px;
}

.ars-right img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.ars-dots {
    text-align: center;
    margin-top: 20px;
}

.ars-dot {
    width: 12px;
    height: 12px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
    cursor: pointer;
}

.ars-dot.active {
    background: #000;
}

.ars-quote-img {
    width: 40px;
    margin-bottom: 15px;
}