body {
    background-color: var(--background-1);
    color: var(--normal-text);
}

.services-page {
    background-color: var(--white);
    padding: 40px 20px 90px;
}

.services-hero {
    padding: 60px 0 30px;
}

.services-hero > div {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eyebrow {
    color: var(--accent-2);
    font-family: 'tc', sans-serif;
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.services-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--accent-1);
    margin: 0 0 12px;
}

.lead {
    max-width: 760px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--nav-font-color);
}

.services-list > div {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    background: var(--background-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card img {
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

.service-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-body h2 {
    color: var(--accent-1);
    margin: 0;
    font-size: 1.45rem;
}

.service-body p {
    margin: 0;
    line-height: 1.8;
    color: var(--nav-font-color);
    font-family: 'tc', sans-serif;
}

.service-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--accent-2);
    color: var(--white);
    text-decoration: none;
    font-family: 'tc', sans-serif;
}

.service-action:hover {
    background: var(--accent-1);
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-card img {
        width: 100%;
        height: 220px;
    }
}
