* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: linear-gradient(to bottom, #222, #444);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.header-content {
    max-width: 800px;
    margin: 0 auto;
}

.profile-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #666;
    background-color: #555;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    filter: grayscale(100%);
}

.name {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.dates {
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 300;
    margin-bottom: 15px;
}

.quote {
    font-style: italic;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

main {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #444;
    font-weight: 300;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: #888;
    margin: 15px auto;
}

.columns {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.column {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 40px 30px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.column:before {
    content: '"';
    font-size: 80px;
    color: #ddd;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.column p {
    margin-bottom: 20px;
    color: #555;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.author {
    text-align: right;
    font-style: italic;
    color: #777;
    margin-top: 25px;
    font-size: 0.95rem;
}

footer {
    background-color: #333;
    color: #aaa;
    text-align: center;
    padding: 40px 0;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.memory-note {
    font-style: italic;
    margin: 20px 0;
    color: #999;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .columns {
        flex-direction: column;
    }
    
    .name {
        font-size: 2.2rem;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
}