.features-section {
    padding: 80px 0; /* Adds top and bottom spacing */
    background-color: #f9f7f0; /* Sets a light background color */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Creates a responsive grid */
    gap: 40px; /* Space between grid items */
    text-align: center; /* Centers all content inside the grid */
    align-items: start; /* Aligns items to the start of the grid cell */
}

.feature-item {
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px; /* Rounded corners for a modern look */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Soft shadow for a floating effect */
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px); /* Lifts the card on hover */
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    height: 120px;
    width: 120px;
    object-fit: contain; /* Ensures the whole image is visible */
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-top: 0;
}