body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Change to column direction to stack container and partners */
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
    font-family: 'Open Sans', sans-serif;
}

.container {
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
}

.container ul {
    list-style-type: none;
    padding: 0;
    clear: both;
}

.container li {
    margin-bottom: 10px;
    color: white;
    font-family: 'Open Sans', sans-serif;
}

.partners {
    text-align: center; /* Center the partners section */
    margin-top: 20px;
}

.partners h3 {
    margin-bottom: 20px; /* Add margin below the heading */
}

.partners ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

.partners li {
    margin: 0 10px; /* Add margin between partner logos */
}

.partner-logo {
    max-width: 200px; /* Adjust size as needed */
    height: auto;
}
