
.solutions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.solutions h2 {
    font-size: 4rem;
    color: var(--light-color-1);
    letter-spacing: .5rem;
    word-spacing: 1rem;
    text-transform: uppercase;
    text-align: center;
    -webkit-text-stroke: 1px transparent;
    margin: 1rem 0;
}

.solutions h3 {
    font-size: 1.5rem;
    font-weight: 300;
    text-align: center;
}

.solutions ul {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.solutions ul li {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-radius: .5rem;
    max-width: 320px;
}

.solutions ul li img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: .5rem .5rem 0 0;
}

.solutions ul li h4 {
    font-size: 1rem;
    font-weight: 300;
    padding: 1rem;
    margin: 0;
    display:flex;
    flex-direction: column;
    gap: .5rem;
}

.solutions ul li h4 a {
    color: var(--secondary-color);
    transition: ease .3s;
}

.solutions ul li h4 a:hover {
    color: var(--primary-color);
}


/* Responsive Design */
@media screen and (max-width: 768px) {
    .solutions h2 {
        font-size: 3rem;
        text-align: center;
        margin: 1rem 0;
        letter-spacing: 0;
    }

    .solutions ul {
        flex-direction: column;
        gap: 2rem;
    }

    .solutions ul li {
        max-width: 100%;
    }
}