body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f7f9fa;
    color: #222;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 32px 24px;
}
header {
    text-align: center;
    margin-bottom: 24px;
}
header h1 {
    font-size: 2.2em;
    color: #2a7b7b;
    margin-bottom: 8px;
}
header h2 {
    font-size: 1.3em;
    color: #555;
    font-weight: 400;
}
.profile {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}
.img1, .img2 {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #2a7b7b;
    background: #e0f7fa;
}
.content h3 {
    color: #2a7b7b;
    margin-top: 24px;
    margin-bottom: 8px;
    font-size: 1.15em;
}
.content ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
}
.content ul li {
    margin-bottom: 6px;
    font-size: 1em;
}
.content p {
    font-size: 1.05em;
    margin-bottom: 16px;
}
.content strong {
    color: #2a7b7b;
}
@media (max-width: 600px) {
    .container {
        padding: 12px 4px;
    }
    .profile {
        flex-direction: column;
        align-items: center;
    }
    .img1, .img2 {
        width: 90px;
        height: 90px;
    }
}
