.journey {
    background: #08006f;
    padding: 60px 20px
}

.journey__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.journey__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px
}

.journey__title {
    font-family: var(--font-enriqueta, "Enriqueta", Georgia, serif);
    color: #fff;
    margin-bottom: 12px;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2
}

.journey__subtitle {
    color: #fffc;
    max-width: 620px;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7
}

.journey__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    display: grid
}

.journey__card {
    text-align: center;
    background: #2f2c74;
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    padding: 24px 18px;
    transition: transform .35s, background .35s;
    display: flex
}

.journey__card:hover {
    background: #3a3785;
    transform: translateY(-6px)
}

.journey__number {
    color: #fff;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 700;
    display: flex
}

.journey__star {
    color: #fdbd2d;
    font-size: 22px
}

.journey__card-title {
    color: #fff;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3
}

.journey__card-description {
    color: #ffffffbf;
    max-width: 200px;
    margin: 0 auto;
    font-size: 12.5px;
    line-height: 1.6
}

@media (max-width:1200px) {
    .journey__cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .journey__title {
        font-size: 28px
    }
}

@media (max-width:992px) {
    .journey {
        padding: 50px 20px
    }

    .journey__header {
        margin-bottom: 30px
    }

    .journey__title {
        font-size: 26px
    }

    .journey__subtitle {
        font-size: 13px
    }

    .journey__number {
        font-size: 26px
    }

    .journey__star {
        font-size: 20px
    }
}

@media (max-width:768px) {
    .journey {
        padding: 40px 16px
    }

    .journey__cards {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .journey__title {
        font-size: 24px
    }

    .journey__subtitle {
        font-size: 13px;
        line-height: 1.6
    }

    .journey__card {
        padding: 20px 18px
    }

    .journey__number {
        margin-bottom: 8px;
        font-size: 24px
    }

    .journey__star {
        font-size: 18px
    }

    .journey__card-title {
        font-size: 15px
    }

    .journey__card-description {
        font-size: 12.5px
    }
}

@media (max-width:480px) {
    .journey {
        padding: 32px 14px
    }

    .journey__title {
        font-size: 20px
    }

    .journey__subtitle {
        font-size: 12.5px
    }

    .journey__number {
        font-size: 22px
    }

    .journey__card-title {
        font-size: 14px
    }

    .journey__card-description {
        font-size: 12px
    }
}

.service-locations {
    background: #fdeef4;
    padding: 60px 20px
}

.service-locations__container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto
}

.service-locations__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px
}

.service-locations__eyebrow {
    color: #111;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    display: block
}

.service-locations__title {
    color: #111;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3
}

.service-locations__subtitle {
    color: #6b6b6b;
    font-size: 13.5px;
    line-height: 1.7
}

.service-locations__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    display: grid
}

.service-locations__card {
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    transition: transform .3s, box-shadow .3s;
    display: block;
    overflow: hidden;
    box-shadow: 0 4px 14px #0a00600f
}

.service-locations__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 22px #0a00601f
}

.service-locations__media {
    aspect-ratio: 1;
    width: 100%;
    position: relative
}

.service-locations__img {
    object-fit: cover
}

.service-locations__name {
    text-align: center;
    color: #111;
    padding: 12px 8px;
    font-size: 13.5px;
    font-weight: 600;
    display: block
}

@media (max-width:768px) {
    .service-locations {
        padding: 48px 20px
    }

    .service-locations__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .service-locations__title {
        font-size: 21px
    }
}

@media (max-width:480px) {
    .service-locations {
        padding: 40px 16px
    }

    .service-locations__header {
        margin-bottom: 28px
    }

    .service-locations__title {
        font-size: 19px
    }

    .service-locations__subtitle {
        font-size: 13px
    }

    .service-locations__grid {
        gap: 14px
    }

    .service-locations__name {
        padding: 10px 6px;
        font-size: 13px
    }
}