.expertises-page {
    background-color: #f4f4f4;
}

.expertises-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
}

.expertises-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}

.expertises-hero__title {
    position: relative;
    z-index: 1;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
}

.expertises-intro {
    background-color: #fff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    padding: 50px 0;
}

.expertises-intro h2 {
    margin-top: 100px !important;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.expertises-intro__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expertises-intro__list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #4b4b4b;
}

.expertises-intro__icon {
    width: 30px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertises-intro__icon img {
    width: 100%;
    height: auto;
    display: block;
}

.expertises-intro__text {
    flex: 1;
    color: black;
    font-weight: 600;
}

.expertises-intro__content {
    margin-top: 1.5rem;
    color: #4b4b4b;
    line-height: 1.7;
}

.expertises-intro__content p {
    margin-bottom: 1rem;
}

.expertises-list {
    padding: 60px 0 100px;
    background-color: white;
}

.expertise-card {
    background-color: #fff;
    border-left: 4px solid #f4d713;
    padding: 32px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.expertise-card__header {
    display: flex;
    gap: 20px;
}

.expertise-card__icon img {
    width: 140px;
}

.expertise-card__header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
}

.expertise-card__header p {
    margin: 0;
    color: #4b4b4b;
    line-height: 1.6;
}

.expertise-card__examples {
    margin-top: 24px;
}

.expertise-card__label {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 16px;
}

.expertise-card__label-icon {
    width: 30px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expertise-card__label-icon img {
    width: 100%;
    height: auto;
    display: block;
}

.expertise-card__label-text {
    flex: 1;
}

.expertise-examples {
    margin-left: -10px;
    margin-right: -10px;
}

.expertise-examples .slick-track {
    display: flex !important;
    gap: 10px;
}

.expertise-examples .slick-slide {
    height: auto !important;
    display: flex !important;
}

.expertise-examples .slick-slide > div {
    width: 100%;
    display: flex;
    height: 100%;
}

.expertise-examples__item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px;
    margin: 0 10px;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100%;
}

@media (max-width: 991px) {
    .expertise-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .expertises-intro {
        padding: 40px 0;
    }

    .expertises-intro__list {
        margin-bottom: 1.5rem;
    }

    .expertise-card {
        padding: 26px;
    }
}

@media (max-width: 575px) {
    .expertise-card {
        padding: 22px;
    }

    .expertises-hero {
        padding: 60px 0;
    }

    .expertises-intro__list li {
        align-items: flex-start;
        gap: 0.8rem;
        font-size: 0.95rem;
    }

    .expertises-intro__icon {
        width: 54px;
        height: 54px;
    }

    .expertise-card__label-icon {
        width: 48px;
        height: 48px;
    }

    .expertise-card__header h3 {
        font-size: 1.2rem;
    }
}
