* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    background-color: #f0f0f0;
    color: #333;
    line-height: 1.6;
    padding: 40px 20px;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.title {
    font-size: 1.2rem;
    color: #666;
}

section {
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 500;
}

ul {
    list-style-type: none;
}

li {
    margin-bottom: 10px;
}

a {
    color: #4285f4;
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: #0d5bdd;
    text-decoration: underline;
} 