.introduction-container {
    display: flex;
    align-items: flex-start; /* Align items by their top edge */
    margin-left: 20px; 
    margin-right: 20px; 
}

.photo-name-container{
    display: grid;  
}

.photo {
    width: 200px; /* Set the specific width for the photo */
}

.name {
    margin-top: 18px;
    margin-bottom: 0px;
    display: flex;
    justify-content: center; /* Center horizontally */
}

.self-introduction {
    font-size: 14px;
    margin-left: 30px;
}

.self-introduction p {
    margin-top: 0px;
    margin-bottom: 13px;
}

/* Adjust photo and introduction for smaller screen */
@media (max-width: 600px) {
    .introduction-container {
        align-items: center; /* Center vertically */
    }

    .photo-name-container{
        margin-bottom: 16px;
    }

    .introduction-container {
        flex-direction: column;
    }
}

.body-content {
    margin-left: 40px; 
    margin-right: 40px;
    margin-bottom: 80px;
}

.body-content h3 {
    font-size: px;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
}

.body-content ul {
    list-style-type: square;
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.body-content a {
    color: rgb(0.9945, 87.006, 145.9875);
    text-decoration: none;
}

.body-content a:hover {
    color: rgb(0.9945, 87.006, 145.9875, 0.4);
}