Add CSS Grid layout to the features section and make it responsive.
.features to display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;.max-width: 900px to reduce features grid to 1 column.Use display: grid with repeat() for equal columns.