body, h1, h2, p {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
body {
    background-color: #fff; /* White background */
    color: #000; /* Black text */
    text-align: center; /* Center all content */
    line-height: 1.6;
}
.center-content {
    padding: 40px;
}
h1 {
    font-size: 2rem; /* Reduced size for h1 */
    font-weight: bold;
    margin-bottom: 20px;
}
h2 {
    font-size: 1.8rem; /* Reduced size for h2 */
    font-weight: bold;
    margin-bottom: 20px;
}
h3 {
    font-size: 1.4rem; /* Reduced size for h3 */
    margin-bottom: 10px;
}
p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}
a {
    color: #007BFF; /* Set link color to blue */
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}
li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.title-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.small-logo {
    width: 40px; /* Very small logo */
    margin-left: 10px;
}
.small-image {
    max-width: 50%; /* Reduce size of the images */
    margin-top: 20px;
}
.image-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.image-row img {
    max-width: 48%;
}
