.features-grid-section {
    width: 100%;
    background-color: #fffae6;
    padding: 60px 0;
    font-family: Arial, sans-serif;
    color: #584a40;
    box-sizing: border-box;
}

.features-container {
    max-width: 98%;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    box-sizing: border-box;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    color: #584a40;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 10px;
}

.feature-card {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: bold;
    color: #d98282;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #6b5e54;
    margin: 0;
    max-width: 100%;
}

@media (max-width: 1200px) {
    .features-grid {
        flex-wrap: wrap;
        gap: 30px;
    }

    .feature-card {
        flex: 1 1 40%;
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .features-grid-section {
        padding: 30px 0;
    }

    .features-container {
        max-width: 100%;
        padding: 0 15px;
    }

    .features-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .feature-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    .feature-card h3 {
        white-space: normal;
    }
}