.one-stop-section {
    width: 100%;
    background-color: #ADBC91;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.one-stop-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Image & Arc Text Wrapper */
.one-stop-img-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.curved-text {
    font-family: var(--font-californian, 'Californian FB', Georgia, serif);
    font-size: 20px;
    font-weight: 400;
    fill: #3A4729;
}

.curved-text .highlight-green {
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 19px;
    font-weight: 700;
    fill: #0F4C3A;
}

.one-stop-img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Typography */
.one-stop-heading {
    color: #ffffff;
    font-family: var(--font-californian, 'Californian FB', Georgia, serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 20px;
    text-align: left;
}

.one-stop-description {
    color: #3D4A2B;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 540px;
    text-align: left;
}

/* Pill Button */
.one-stop-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #3A4729;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.one-stop-btn:hover {
    background-color: #f8f9fa;
    color: #27321A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Right Column: What Our Clients Say */
.clients-say-right-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.clients-say-heading {
    color: #264326;
    font-family: var(--font-californian, 'Californian FB', Georgia, serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
}

.clients-say-description {
    color: #435E41;
    font-family: var(--font-hyundai-text, 'Hyundai Sans Text Office', sans-serif);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 28px;
    max-width: 520px;
}

/* Top Row: 2 Big Portrait Images */
.clients-grid-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 16px;
}

/* Bottom Row: 3 Landscape Images */
.clients-grid-bottom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    width: 100%;
    margin-bottom: 32px;
}

.client-card {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: #1a1a1a;
    display: flex;
}

.client-card-lg {
    aspect-ratio: 4 / 7;
}

.client-card-sm {
    aspect-ratio: 4 / 3;
}

.client-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.client-card:hover .client-card-img {
    transform: scale(1.03);
}

.clients-say-btn {
    margin-top: 8px;
}

@media (max-width: 991px) {
    .one-stop-section {
        padding: 60px 0;
    }

    .one-stop-heading,
    .clients-say-heading {
        font-size: 32px;
    }

    .one-stop-description,
    .clients-say-description {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .clients-say-right-content {
        margin-top: 20px;
    }

    .clients-grid-top {
        gap: 12px;
        margin-bottom: 12px;
    }

    .clients-grid-bottom {
        gap: 12px;
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .one-stop-section {
        padding: 44px 0;
    }

    .one-stop-heading,
    .clients-say-heading {
        font-size: 26px;
    }

    .one-stop-description,
    .clients-say-description {
        font-size: 13px;
    }

    .one-stop-btn {
        padding: 12px 24px;
        font-size: 12px;
    }

    .clients-grid-top {
        gap: 8px;
        margin-bottom: 8px;
    }

    .clients-grid-bottom {
        gap: 8px;
        margin-bottom: 20px;
    }
}