.services-intro-2 {
    padding: 6rem 8% 4rem; 
}
.req-item::before {
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold);
    font-weight: 600;
    min-width: 20px;
}

.req-list {
    list-style: none;
    counter-reset: req-counter;
    padding: 0;
}

.req-item {
    counter-increment: req-counter;
}

    .req-item::before {
        content: counter(req-counter, decimal-leading-zero) ". ";
    }
.footer-links li {
    font-size: 0.82rem;
    font-weight: 300;
    color: var(--blue-400);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col-title {
    padding-left: 2rem;
}

.cta-contacts p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--gold-light);
}
.cta-contacts svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
}
.cta-contacts a {
    text-decoration: none;
    color: var(--gold-light);
}