*{ box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: Arial, sans-serif; color: #222; }

.about {
display: flex;
gap: 40px;
max-width: 1100px;
margin-top: 30px;
}

.left {
width: 500px;
height: 400px;
border-radius: 20px;
overflow: hidden;
background: #eee;
}
.left img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.right h2 {
color: #123a61;
font-size: 32px;
margin-bottom: 8px;
}
.lead {
font-style: italic;
color: #555;
margin-bottom: 12px;
line-height: 1.6;
}

.details {
display: flex;
flex-wrap: wrap;
margin-top: 14px;
}
.item {
width: 45%; margin-bottom: 10px;
}
.item strong {
color: #123a61;
font-weight: bold;
display: inline-block;
width: 120px;
}
.item span, .item a { color: #2b3f47; text-decoration: none; }
.item a { color: #1e90ff; }
