/* Why Us? Section */
#why-us {
    background-color: #303d6a;
    color: white;
}
  
.why-us-grid {
    display: flex; /* Default flex layout */
    flex-wrap: wrap; /* Allow items to wrap */
    gap: 30px; /* Increase gap between grid items */
    justify-content: center; /* Center items */
}

.grid-item {
    text-align: center;
    max-width: 250px; /* Limit the width of grid items */
}

.grid-item i {
    font-size: 40px; /* Adjust icon size */
    display: block; /* Make icon take full width */
    margin-bottom: 10px; /* Space between icon and text */
}

.grid-item p {
    margin: 0;
    font-size: 14px;
}