.service-card-hero {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(8, 31, 44, 0.94), rgba(8, 31, 44, 0.58)),
        url('../images/1.png') center center / cover no-repeat;
    color: #ffffff;
}

.service-card-hero::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 8px;
    background: #f6a822;
}

.service-card-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding-top: 70px;
}

.service-card-hero-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.service-card-intro,
.service-card-detail {
    padding: 20px 0;
}

.service-card-intro {
    background: #ffffff;
}

.service-card-image {
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(7, 29, 42, 0.15);
}

.service-card-image img {
    width: 100%;
    min-height: 470px;
    object-fit: cover;
}

.service-card-text span {
    display: inline-block;
    margin-bottom: 18px;
    color: #f6a822;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.service-card-text h2,
.service-card-detail-box h2 {
    margin-bottom: 22px;
    color: #071d2a;
    font-size: 42px;
    line-height: 1.16;
    font-weight: 800;
    letter-spacing: 0;
}

.service-card-text p,
.service-card-detail-box p {
    color: #5d6a73;
    font-size: 17px;
    line-height: 1.8;
}

.service-card-detail {
    background: #f6f8f9;
}

.service-card-detail-box {
    padding: 48px;
    border-left: 6px solid #f6a822;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(7, 29, 42, 0.08);
}

.service-card-detail-box p {
    margin-bottom: 0;
    text-align: justify;
}

@media only screen and (max-width: 991px) {
    .service-card-hero {
        min-height: 360px;
    }

    .service-card-hero-content h1 {
        font-size: 44px;
    }

    .service-card-intro,
    .service-card-detail {
        padding: 20px 0;
    }

    .service-card-image img {
        min-height: 380px;
    }
}

@media only screen and (max-width: 767px) {
    .service-card-hero {
        min-height: 320px;
    }

    .service-card-hero-content h1,
    .service-card-text h2,
    .service-card-detail-box h2 {
        font-size: 34px;
    }

    .service-card-image img {
        min-height: 280px;
    }

    .service-card-detail-box {
        padding: 30px;
    }
}
