.header {
    padding: 225px;
    background-image: url('images/glasgow2.jpg');
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    border-bottom: 15px solid #18569e;
    /*filter: brightness(80%);*/
}

/* Place text in the middle of the image */
.header-text {
    text-align: center;
    position: absolute;
    font-size: 30px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

#containerbanner {
    width: 80%;
    /*background-image: url(images/icc2026.png);*/
    height: 75px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    text-align: center;
    /*max-width: 100%; !* makes it responsive *!*/
    display: inline-block;
}

.maintext {
    font-size: 18px;
    margin-right: 100px;
}

.mainpageheading {
    text-align: center;
    font-weight: bold;
    color: midnightblue;
}

.bio-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.bio-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%; /* makes images circular */
    object-fit: cover;
}

.bio-text {
    flex: 1;
}

.bio-text h2 {
    margin: 0 0 10px;
    font-size: 1.5rem;
}

.bio-text p {
    margin: 0;
    color: #555;
    line-height: 1.5;
}

/* Responsive: stack image above text on small screens */
@media (max-width: 600px) {
    .bio-card {
        flex-direction: column;
        text-align: center;
    }

    .bio-card img {
        margin-bottom: 15px;
    }
}
