.features-section {
    padding: 5rem 0;
    background-color: var(--creamy-beige); /* Using that beige we defined */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-brand);
    margin-bottom: 0.8rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 280px;
}

/* --- SECTION HEADER STYLES --- */
.features-header {
    text-align: center;
    margin-bottom: 5rem; /* Big space before the icons */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-header span {
    color: var(--accent-brand);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1rem;
}

.features-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-brand);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.features-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Adjust the grid margin now that we have a header */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

/* Responsive fix for the big header */
@media (max-width: 768px) {
    .features-header h2 {
        font-size: 2rem;
    }
}

/* Add a subtle hover effect */
.feature-item:hover .feature-icon {
    transform: translateY(-5px);
    transition: var(--transition);
    background-color: var(--yogurt-white);
}

@media (max-width: 768px) {
    .features-grid {
        gap: 2rem;
    }
}