body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--primary-black);
    text-transform: uppercase;
}



/* Page Header */
.page-header {
    padding: 100px 0 60px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

/* Service Detail Rows */
.service-row {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-row:last-child {
    border-bottom: none;
}

.service-img-wrap {
    height: 100%;
    min-height: 350px;
    background: #eee;
    position: relative;
    overflow: hidden;
}

.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-img-wrap:hover img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #555;
}

.feature-list li i {
    margin-right: 10px;
    color: var(--primary-black);
}

/* Process Steps */
.process-step {
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    height: 100%;
    position: relative;
    background: #fff;
    transition: 0.3s;
}

.process-step:hover {
    background: var(--primary-black);
    color: white;
    border-color: var(--primary-black);
}

.process-step:hover h4,
.process-step:hover p {
    color: white;
}

.process-step:hover .step-num {
    color: rgba(255, 255, 255, 0.2);
}

.step-num {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    transition: 0.3s;
}

/* Utility */
.btn-black {
    background: var(--primary-black) !important;
    color: white !important;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 600;
    border: none;
}

.btn-black:hover {
    background: #333 !important;
}

.bg-light-grey {
    background-color: var(--light-grey);
}

.section-padding {
    padding: 80px 0;
}

.label-top {
    font-weight: 700;
    font-size: 11px;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .service-row {
        padding: 40px 0;
        text-align: center;
    }

    .feature-list li {
        justify-content: center;
    }

    .order-md-2 {
        order: unset !important;
    }

    /* Fix zig-zag on mobile */
}