﻿body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9; /* Background color */
    margin: 0;
    padding: 20px;
    text-align: center; /* Center logos */
}

.logo-container {
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Center logos horizontally */
    flex-wrap: wrap; /* Allow logos to wrap to the next line if necessary */
    gap: 60px; /* Space between logos */
    padding: 20px; /* Padding around the container */
    background: #fff; /* Background color for the logo container */
    border-radius: 10px; /* Optional rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow */
}

    .logo-container img {
        height: 50px; /* Adjust height as needed */
        max-width: 100%; /* Ensure logos are responsive */
    }
