body, html {
    height: 100%;
    margin: 0;
    padding: 0;
}

.site-header {
    background-color: white;
    color: rgb(43, 45, 95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
}

.site-header .logo {
    color: rgb(43, 45, 95);
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

.site-header .nav-link {
    color: rgb(43, 45, 95);
}

.content-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-wrapper {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 0px 20px 0px;
}

.site-footer {
    background-color: rgb(251, 187, 17);
    color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}

.title-banner {
    background-color: white;
    color: rgb(43, 45, 95);
    padding: 20px 0px 0px 0px;
    text-align: center;
}


.image-banner {
	position:relative;
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}

.image-caption {
    margin-bottom: 0px;
}

.image-caption-container {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    max-width: 75%;
    text-align: right;
}

.partner-card {
            transition: transform 0.3s ease-in-out;
        }
        .partner-card:hover {
            transform: translateY(-5px);
        }
        .partner-flag {
            font-size: 0.9rem;
            font-weight: bold;
            padding: 4px 8px;
            border-radius: 5px;
            color: white;
            display: inline-block;
        }
        .pl-flag { background-color: #007bff; } /* Blue for Project Lead */
        .col-flag { background-color: #ff9800; } /* Orange for Co-Leads */

.image-container {
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        .download-btn {
            margin-top: 15px;
        }
