/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 40px;
    max-width: 800px;
}

.container {
    width: 100%;
}

.header {
    margin-bottom: 40px;
}

.name {
    font-size: 2rem;
    font-weight: normal;
    color: #000;
    margin-bottom: 20px;
}

.content {
    margin-bottom: 40px;
}

.content p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #333;
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    
    .name {
        font-size: 1.8rem;
    }
}
