body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 800px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4a90e2;
}

.expert {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.expert img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover; /* Added to ensure photos don't stretch */
}

.expert div {
    display: flex;
    flex-direction: column;
}

.expert div h3 {
    margin: 0;
    color: #636363;
}

.expert div p {
    margin: 5px 0 0 0;
    font-size: 0.9em;
    color: #888;
}