/* Services Section */
.services {
    background-color: #1A3A51;
    padding: 20px 0;
}

.services .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.services .container > div {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #FFF;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.services .container > div img {
    width: 20px;
    height: 20px;
}

/* Services Section Mobile */
@media (max-width: 768px) {
    .services .container {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 0 20px;
        justify-content: center;
    }
    
    .services .container > div {
        flex: 1 1 45%;
        min-width: 150px;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        font-size: 14px;
    }
}