body {
    background-color: #fefcfa;
}

/* ============================= */
/* SERVICE PAGES */
/* ============================= */
.service-hero {
    padding: 70px 8% 45px;
}

.service-hero-container,
.service-container {
    max-width: 1300px;
    margin: 0 auto;
}

.service-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

/* ============================= */
/* TYPOGRAPHY */
/* ============================= */
.service-label,
.section-header span {
    color: #159b8f;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.service-hero h1,
.section-header h2,
.service-info h2,
.service-cta h2 {
    color: #14365a;
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.05;
}

.service-hero h1 {
    font-size: clamp(3.2rem, 7vw, 6rem);
    margin: 16px 0 5px;
}

.service-tagline {
    color: #159b8f;
    font-size: 2.2rem;
    font-family: 'Allura', cursive;
    margin-bottom: 20px;
}

.service-hero p,
.service-info p,
.service-card p,
.process-card p,
.service-cta p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.8;
}

.service-hero-text p {
    max-width: 600px;
}

/* ============================= */
/* BUTTON */
/* ============================= */
.service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;
    padding: 15px 30px;

    background: #159b8f;
    color: #ffffff;

    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;

    transition: 0.3s ease;
}

.service-btn:hover {
    background: #10766d;
    transform: translateY(-3px);
}

/* ============================= */
/* HERO IMAGE */
/* ============================= */
.service-hero-image {
    height: 500px;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.service-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================= */
/* SECTIONS */
/* ============================= */
.service-section,
.service-info,
.process-section {
    padding: 50px 8%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
}

.section-header h2,
.service-info h2,
.service-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin: 12px 0 15px;
}

/* ============================= */
/* CARDS */
/* ============================= */
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.process-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;

    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
    border: 1px solid rgba(20,54,90,0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.service-card:hover,
.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: rgba(21,155,143,0.3);
}

.service-card h3,
.process-card h3 {
    color: #14365a;
    font-size: 1.45rem;
    margin-bottom: 12px;
    font-family: 'Times New Roman', Times, serif;
}

/* ============================= */
/* TWO COLUMN INFO */
/* ============================= */
.two-column {
    background: #ffffff;
    border-radius: 35px;
    padding: 40px;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;

    box-shadow: 0 14px 35px rgba(0,0,0,0.07);
}

/* ============================= */
/* PROCESS */
/* ============================= */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-card {
    text-align: center;
}

.process-card strong {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;

    border-radius: 50%;
    background: #159b8f;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.35rem;
}

/* ============================= */
/* CTA */
/* ============================= */
.service-cta {
    padding: 50px 8% 70px;
}

.service-cta-box {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px;

    text-align: center;

    background: linear-gradient(135deg, #14365a, #159b8f);
    border-radius: 35px;
    color: white;
}

.service-cta h2,
.service-cta p {
    color: white;
}

.service-cta p {
    max-width: 650px;
    margin: 0 auto;
}

/* ============================= */
/* MOBILE */
/* ============================= */
@media (max-width: 1100px) {
    .service-hero-container,
    .two-column {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .service-card-grid,
    .service-card-grid.four,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .service-hero,
    .service-section,
    .service-info,
    .process-section,
    .service-cta {
        padding-left: 6%;
        padding-right: 6%;
    }

    .service-hero {
        padding-top: 55px;
        padding-bottom: 35px;
    }

    .service-section,
    .service-info,
    .process-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .service-card-grid,
    .service-card-grid.four,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-hero-image {
        height: 350px;
    }

    .two-column,
    .service-cta-box {
        padding: 32px 24px;
    }

    .service-btn {
        width: 100%;
    }
}