/* services.css */

#header-txt {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 2.4rem;
    color: var(--blue-dark);
    letter-spacing: 0.1em;
    text-align: center;
    padding: 52px 24px 8px;
}

#header-txt::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--orange);
    margin: 16px auto 0;
    border-radius: 2px;
}


body>div h3 {
    max-width: 680px;
    margin: 24px auto 0;
    text-align: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    padding: 0 24px;
}




.services-list {
    max-width: 780px;
    margin: 48px auto 80px;
    padding: 0 32px;
}

.services-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services-list ul li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.03em;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    border-left: 3px solid transparent;
    transition: border-left-color var(--transition),
        background var(--transition),
        color var(--transition);
}

.services-list ul li:first-child {
    border-top: 1px solid var(--border);
}

.services-list ul li:hover {
    border-left-color: var(--orange);
    background: var(--blue-muted);
    color: var(--blue-dark);
}