.services {
    background: var(--second-bg-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 6rem 2rem 2rem 2rem;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.services .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, auto));
    align-items: center;
    gap: 2.5rem;
    margin-top: 5rem;
}


