body {
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.center-container {
    flex: 1;
    display: flex;
    flex-direction: column;   /* stack image + text */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.main-image {
    max-width: 50%;
    height: auto;
}

.title {
    margin-top: 16px;  /* space under image */
    color: black;
}

.logos {
    padding: 20px 20px 30px;
}

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 14px;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.logo-row.top .logo {
    width: clamp(70px, 12vw, 250px);
    height: clamp(35px, 6vw, 150px);
}

.logo-row.bottom .logo {
    width: clamp(90px, 16vw, 270px);
    height: clamp(45px, 8vw, 180px);
}

/* optional tweak for very wide logos */
.logo-row.bottom .logo.wide img {
    max-width: 95%;
    max-height: 95%;
}

.footer {
    padding: 12px 20px 20px;
}

.footer-text {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    font-size: 8px;
    line-height: 1.4;
    color: #666;
}

/* each column */
.footer-col {
    width: 25%;
    text-align: left;
}

@media (max-width: 600px) {
    .footer-text {
        flex-direction: column;
        gap: 12px;
    }

    .footer-col {
        width: 100%;
        text-align: center;
    }
}