/* Service Hero Section */
.service-hero {
    position: relative;
    width: 100%;
    height: 636px;
    overflow: hidden;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 82px;
}

.service-hero-inner {
    margin-top: 100px
}

.service-hero-title {
    width: auto;
    height: 72px;
    font-family: 'Cal Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 72px;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
}

.service-hero-description {
    width: 600px;
    height: 90px;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: #FFFFFF;
    margin: 0;
    display: flex;
    align-items: flex-start;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .service-hero-content {
        padding: 0 30px;
    }

    .service-hero-title {
        width: 100%;
        max-width: 600px;
        font-size: 50px;
        line-height: 60px;
        height: auto;
        min-height: 60px;
    }

    .service-hero-description {
        width: 100%;
        max-width: 600px;
        font-size: 18px;
        height: auto;
        min-height: 90px;
    }
}

@media screen and (max-width: 768px) {
    .service-hero {
        height: 550px;
    }

    .service-hero-content {
        padding: 0 20px;
    }

    .service-hero-inner {
        margin-top: 100px;
        bottom: 35px;
        padding: 0px 13px;
        position: absolute;
    }

    .service-hero-title {
        font-size: 40px;
        line-height: 48px;
        min-height: 48px;
        margin-bottom: 10px;
    }

    .service-hero-description {
        font-size: 18px;
        line-height: 150%;
        min-height: 70px;
    }
}

@media screen and (max-width: 480px) {
    .service-hero {
        height: 450px;
    }

    .service-hero-content {
        padding: 0 15px;
    }

    .service-hero-title {
        font-size: 40px;
        line-height: 40px;
        min-height: 40px;
        margin-bottom: 16px;
    }

    .service-hero-description {
        font-size: 18px;
        line-height: 150%;
        min-height: 60px;
    }
}

/* Cal Sans Font Loading */
@font-face {
    font-family: 'Cal Sans';
    src: url('/fonts/CalSans-SemiBold.woff2') format('woff2'),
        url('/fonts/CalSans-SemiBold.woff') format('woff');
    font-weight: 400;
    ;
    font-style: normal;
    font-display: swap;
}

/* Inter Font Loading */
@font-face {
    font-family: 'Cal Sans';
    src: url('/fonts/Inter-Regular.woff2') format('woff2'),
        url('/fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}