/* Host Section */
.host-section {
  padding-top: 60px; /* Reduced from 120px */
  padding-bottom: 60px; /* Reduced from 80px */
  margin-top: 0; /* Changed from 40px */
}

.host-section .container {
max-width: 900px; /* Changed from 800px */
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: flex-start; /* Changed from center */
gap: 40px;
}

.host-profile {
flex: 0 0 35%;
align-self: flex-start; /* Align to top */
}

.profile-image {
width: 100%;
height: auto;
border-radius: 50%;
object-fit: cover;
display: block;
margin: 0 auto;
}

.host-info {
text-align: left;
padding-right: 50px;
padding-left: 30px;
padding-bottom: 20px;
line-height: 1.8; /* Improved line height */
}

.host-info h2 {
font-size: 38px; /* was 30px, +8 */
margin-bottom: 25px; /* More space after the title */
}

.host-info p {
margin-bottom: 20px; /* Added space between paragraphs */
text-align: left; /* Changed from justify to left */
}
