* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #2c3e50;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 30px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.2em;
    color: #7f8c8d;
    font-style: italic;
}

.years {
    font-size: 1.1em;
    color: #95a5a6;
    margin-top: 5px;
}

.image-container {
    text-align: center;
    margin: 30px 0;
}

.image-container img {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-caption {
    font-size: 0.9em;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 10px;
}

section {
    margin-bottom: 30px;
}

h2 {
    color: #667eea;
    margin-bottom: 15px;
    font-size: 1.8em;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.quote {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

.highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 2px 6px;
    border-radius: 3px;
}

footer {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #ecf0f1;
    color: #7f8c8d;
    font-size: 0.9em;
}
