body {
    font-family: 'Frank Ruhl Libre', serif;
    margin: 0;
    padding: 0;
    background-color: navy;
    color: #333;
}

.top-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background-color: white;
    padding: 10px 20px;
    gap: 20px;
    font-weight: bold;
}

.top-header a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #ffb4a2;
}

.top-header img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    margin-right: auto;
}

.header-banner {
    background-color: white;
    text-align: center;
    padding: 40px 20px;
}

.header-banner h1 {
    margin: 0 0 10px 0;
    font-size: 2.5rem;
    border-bottom: 3px solid #dd22a8;
    display: inline-block;
    padding-bottom: 5px;
}

.partners-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: stretch;
    /* Ensures cards have the same height */
}

.partner {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex: 1;
    /* Allows cards to grow and fill the space */
}

.partner img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.partner h1 {
    border-bottom: 3px solid #dd22a8;
    /* Pink underline */
    display: block;
    width: fit-content;
    margin: 0 auto 10px auto;
    /* Keeps the underline strictly under the text */
    padding-bottom: 5px;
    text-align: center;
}

.partner h2 {
    text-align: center;
    color: grey;
    margin-top: 0;
    font-size: 1.1rem;
}

.partner p {
    line-height: 1.6;
    text-align: left;
    margin-top: 15px;
}

.site-footer {
    text-align: center;
    padding: 20px;
    color: #666;
    margin-top: 40px;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f9fa;
}

.site-footer p {
    margin: 0;
}