.three-features-section {
    padding: 60px 20px;
    width: 100%;
}

.three-features-inner {
    max-width: 1200px;
    margin: auto;
}

.three-features-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.feature-item {
    text-align: center;
    flex: 1;
}

.feature-icon {
    width: 48px;
    height: auto;
    margin-bottom: 20px;
}

.feature-text {
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
}

@media screen and (max-width: 768px) {

    .three-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 32px;
        justify-items: center;
    }

    /* Center the 3rd item */
    .feature-item:nth-child(3) {
        grid-column: 1 / -1;
    }

    .feature-item {
        flex: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon {
        width: 44px;
        margin-bottom: 16px;
    }

    .feature-text {
        font-size: 18px;
        letter-spacing: 1px;
    }
}