body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 32px;
}

.header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 20px;
}

.header img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #007bff;
}

.header h1 {
    margin: 0;
    font-size: 2.2em;
    color: #007bff;
}

.header p {
    margin: 4px 0;
    color: #333;
}

.section {
    margin-top: 30px;
}

.section h2 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.section ul {
    padding-left: 20px;
}

.images {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.images img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}