.service-page {
    background: linear-gradient(180deg, #fcfefe 0%, #f5f8fb 100%);
}

.service-page .container {
    position: relative;
    z-index: 1;
}

.service-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 48px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 34%),
        linear-gradient(135deg, #eef4ff 0%, #f8fbff 50%, #eef8fb 100%);
    color: #112235;
}

.service-hero::before,
.service-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(12, 95, 176, 0.08);
}

.service-hero::before {
    width: 320px;
    height: 320px;
    top: -140px;
    right: -60px;
}

.service-hero::after {
    width: 200px;
    height: 200px;
    bottom: -90px;
    left: -70px;
}

.service-hero--private {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.5), transparent 34%),
        linear-gradient(135deg, #eef8f2 0%, #f9fcfa 48%, #eef9f3 100%);
}

.service-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #eaf3ff;
    color: #0c5fb0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-hero h1 {
    color: #112235;
    font-size: 50px;
    line-height: 1.08;
    margin-bottom: 16px;
}

.service-hero-copy {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.75;
    color: #55616e;
    margin-bottom: 0;
}

.service-hero-image-wrap {
    display: flex;
    justify-content: center;
}

.service-hero-image-card {
    width: 100%;
    max-width: 410px;
    background: #ffffff;
    border: 1px solid #edf1f6;
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 24px 60px rgba(19, 35, 52, 0.08);
}

.service-hero-image-card img {
    width: 100%;
    display: block;
    border-radius: 18px;
}

.service-main {
    margin-top: 0;
    padding-top: 28px;
    padding-bottom: 80px;
}

.service-panel,
.service-feature-card,
.service-cta-card,
.service-highlight-card {
    background: #ffffff;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(19, 35, 52, 0.08);
}

.service-panel {
    padding: 36px;
    margin-bottom: 28px;
}

.service-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #4f5b67;
}

.service-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.service-meta-item {
    padding: 22px 20px;
    border-radius: 22px;
    background: #f6f8fb;
    border: 1px solid #edf1f6;
}

.service-meta-label {
    display: block;
    color: #72808f;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-meta-value {
    display: block;
    color: #112235;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
}

.service-section-title {
    color: #07294d;
    font-size: 30px;
    margin-bottom: 14px;
}

.service-section-copy {
    color: #5f6a76;
    font-size: 17px;
    line-height: 1.8;
}

.service-feature-grid {
    margin-top: 24px;
}

.service-feature-card {
    height: 100%;
    padding: 28px;
    border: 1px solid #eff2f5;
}

.service-feature-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0b6cb8, #2fc0b8);
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 18px;
}

.service-page--private .service-feature-icon {
    background: linear-gradient(135deg, #2a8c5f, #6ac995);
}

.service-feature-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
    color: #112235;
}

.service-feature-card p {
    margin-bottom: 0;
    color: #5f6a76;
    line-height: 1.75;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.service-list li {
    position: relative;
    padding: 16px 18px 16px 56px;
    margin-bottom: 14px;
    background: #f8fafc;
    border: 1px solid #edf1f6;
    border-radius: 18px;
    color: #314050;
    line-height: 1.7;
}

.service-list li::before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    left: 20px;
    top: 17px;
    color: #2a8c5f;
    font-size: 18px;
}

.service-cta-card {
    padding: 34px;
    background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.service-page--nhs .service-cta-card {
    background: linear-gradient(180deg, #f3f9ff 0%, #ffffff 100%);
}

.service-page--private .service-cta-card {
    background: linear-gradient(180deg, #f4fbf7 0%, #ffffff 100%);
}

.service-cta-card h2 {
    color: #112235;
    margin-bottom: 12px;
}

.service-cta-card p {
    color: #5f6a76;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0c6dc0, #1ea7a3);
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(11, 79, 146, 0.2);
}

.service-page--private .service-btn {
    background: linear-gradient(135deg, #2a8c5f, #6ac995);
    box-shadow: 0 14px 30px rgba(42, 140, 95, 0.18);
}

.service-btn:hover,
.service-btn:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.service-btn-secondary {
    background: transparent;
    color: #07294d;
    border: 1px solid #d9e2ec;
    box-shadow: none;
}

.service-page--private .service-btn-secondary {
    color: #2a8c5f;
}

.service-btn-secondary:hover,
.service-btn-secondary:focus {
    color: inherit;
}

.service-link-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.service-process {
    margin-bottom: 28px;
}

.service-process-header {
    margin-bottom: 20px;
}

.service-process-header h3 {
    color: #112235;
    font-size: 24px;
    margin-bottom: 8px;
}

.service-process-header p {
    margin-bottom: 0;
}

.service-process-card {
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #edf1f6;
    box-shadow: 0 14px 35px rgba(19, 35, 52, 0.06);
}

.service-process-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    margin-bottom: 18px;
    background: #f7fafc;
}

.service-process-card h4 {
    color: #112235;
    font-size: 22px;
    margin-bottom: 10px;
}

.service-process-card p {
    margin-bottom: 16px;
}

.service-process-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.service-process-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.service-highlight-card {
    padding: 30px;
    border-left: 6px solid #1298c6;
}

.service-page--private .service-highlight-card {
    border-left-color: #6ac995;
}

.service-highlight-card p {
    margin: 0;
    color: #314050;
    line-height: 1.8;
    font-size: 17px;
}

.service-card-grid {
    margin-top: 26px;
}

.service-overview-card {
    height: 100%;
    padding: 28px;
    background: #ffffff;
    border: 1px solid #edf1f6;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(19, 35, 52, 0.08);
}

.service-overview-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    margin-bottom: 20px;
}

.service-overview-card h3 {
    color: #112235;
    font-size: 24px;
    margin-bottom: 12px;
}

.service-overview-card p {
    color: #5f6a76;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-overview-card .service-btn {
    padding: 12px 20px;
}

.service-split-media img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

.service-partner-card {
    padding: 34px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(19, 35, 52, 0.08);
}

.service-partner-card img {
    max-width: 170px;
    height: auto;
    margin-bottom: 18px;
}

.service-partner-card p {
    color: #5f6a76;
    line-height: 1.8;
    margin-bottom: 10px;
}

.service-note {
    color: #7a8694;
    font-size: 14px;
    margin-top: 18px;
}

.service-comingsoon {
    max-width: 180px;
    height: auto;
}

@media (max-width: 991px) {
    .service-hero {
        padding: 64px 0 40px;
    }

    .service-hero h1 {
        font-size: 40px;
    }

    .service-hero-image-wrap {
        margin-top: 28px;
    }

    .service-meta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .service-hero h1 {
        font-size: 32px;
    }

    .service-hero-copy,
    .service-intro,
    .service-section-copy,
    .service-cta-card p,
    .service-highlight-card p {
        font-size: 16px;
    }

    .service-panel,
    .service-feature-card,
    .service-cta-card,
    .service-highlight-card {
        padding: 24px;
    }

    .service-process-header h3 {
        font-size: 22px;
    }

    .service-process-card h4 {
        font-size: 20px;
    }
}
