.member-container {
    padding: 20px;
    background-color: #bcdafa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.member-card {
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 40%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    flex: 1;
}

.member-info h2 {
    margin: 0;
    font-size: 24px;
}

.member-info p {
    margin: 10px 0 0;
    font-size: 16px;
}

.member-name{
    color: #000;
    font-family: Outfit;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.member-title{
    color: #000;

    font-family: Outfit;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.member-desc{
    color: #000;
    font-family: Outfit;
    font-size: 18px;
    font-style: normal;
    line-height: normal;
}

/* Responsive design */
@media (max-width: 768px) {
    .member-card {
        flex-direction: column;
    }

    .member-image {
        width: 100%;
        height: auto;
    }
}
