body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background: #fff;
    padding: 40px;
    margin: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
}

header h1 {
    color: #8b0000; /* Dark red for cultural significance */
    font-size: 3em;
    margin-bottom: 5px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

header p {
    color: #666;
    font-style: italic;
    margin-top: 0;
}

.content {
    text-align: left;
    margin-top: 30px;
}

.profile-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 5px solid #8b0000;
}

.quote {
    background-color: #fffaf0;
    border-left: 5px solid #8b0000;
    padding: 15px 20px;
    margin: 25px 0;
    font-style: italic;
    font-size: 1.1em;
    color: #555;
}

footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #999;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .container {
        padding: 20px;
    }
    header h1 {
        font-size: 2.5em;
    }
}