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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.header {
    background: #2c2c2c;
    color: white;
    padding: 40px;
    text-align: center;
}

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

.title {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 20px;
    font-style: italic;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 0.9rem;
}

.contact-info span {
    padding: 8px 16px;
    border: 1px solid #666;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

#age, #email {
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}

#email:hover {
    text-decoration: underline;
}

.main-content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.5rem;
    color: #2c2c2c;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.education-item {
    margin-bottom: 20px;
    padding: 20px;
    background: #fafafa;
    border-left: 4px solid #666;
}

.education-item h3 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.school-type {
    color: #666;
    font-style: italic;
}

.interests-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.interest-item h3 {
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.interest-item ul {
    list-style: none;
}

.interest-item li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.interest-item li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
    font-weight: bold;
}

.achievement-item {
    padding: 25px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    border-radius: 6px;
    text-align: center;
}

.achievement-item h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.achievement-level {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    body {
        padding: 0;
    }
    
    .container {
        margin: 0;
        border-radius: 0;
    }
    
    .header {
        padding: 30px 20px;
    }
    
    .name {
        font-size: 2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .main-content {
        padding: 30px 20px;
    }
    
    .interests-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media print {
    body {
        background: white;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        border-radius: 0;
    }
}