.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.service-category {
    background: rgba(255, 102, 0, 0.1);
    padding: 1.5em;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-category:hover {
    background: rgba(255, 102, 0, 0.2);
    box-shadow: 0 0 1em var(--primary-color);
}

.service-category h3 {
    color: var(--primary-color);
    font-size: 1.5vw;
    margin-bottom: 0.5em;
    text-shadow: 0 0 0.5em var(--primary-color);
}

.service-category p {
    font-size: 1vw;
}

@media (max-width: 768px) {

    .service-category h3,
    .service-category p {
        font-size: 16px;
    }
}