/* Services hero (left content + right image) - based on Figma 2109:36382 */
.hero-section.hero-services {
    padding: 64px 120px 0;
}

.hero-services-container {
    display: flex;
    align-items: stretch;
    /* ensure left and right columns match height */
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-services-left {
    flex: 1 1 60%;
    display: flex;
    gap: 24px;
    flex-direction: column;
}

.hero-services-right {
    display: flex;
    align-items: stretch;
    /* allow the column to stretch to container height */
    justify-content: center;
    flex: 1 1 40%;
    padding-top: 21px;
    align-self: stretch;
    /* make the right column match left column height */
}

.hero-services-tag {
    color: #403936;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 0.2px;
    margin-bottom: 0;
}

.hero-services-title {
    color: #005b68;
    font-family: 'IvyOra Display', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.hero-services-subtitle {
    color: #ed6a59;
    font-family: 'IvyOra Display';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0;
}

.hero-services-content {
    color: #403936;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    gap: 24px;
    line-height: normal;
    margin-bottom: 0;
}

.hero-services-content p {
    margin-bottom: 0;
}

.hero-services-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 0;
    margin-top: 0;
}

/* Hero services buttons now use centralized component (teal-primary and outline) */

.hero-services-right img {
    height: 100%;
    max-width: 464px;
    max-height: 498px;
    object-fit: cover;
}

/* Responsive: stack under 1200px */
@media (max-width: 1200px) {
    .hero-services-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
    }

    .hero-services-left,
    .hero-services-right {
        flex: 0 0 100%;
        align-items: flex-start;
    }

    .hero-services-subtitle {
        text-align: left;
        font-size: 16px;
    }

    .hero-services-title {
        font-size: 32px;
        text-align: left;
    }

    .hero-services-content {
        font-size: 16px;
        max-width: 100%;
        text-align: left;
    }

    .hero-services-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-services-actions .hero-services-btn {
        text-align: left;
    }

    .hero-section.hero-services {
        padding: 48px 60px 0;
    }
    .hero-services-right img {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-section.hero-services {
        padding: 48px 24px 0;
    }

    .hero-services-tag {
        font-family: 'IBM Plex Sans', sans-serif;
        text-align: left;
        font-size: 16px;
        font-weight: 400;
        color: #403936;
    }
}
