
/* Icon Bar Styling */
.icon-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
}

.icon-item {
    text-align: center;
    flex-basis: 20%; /* Each icon will take up 20% of the width */
}

.icon-item img {
    width: 60px; /* Set the width for the icons */
    margin-bottom: 10px;
}

.icon-item p {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
}
