/* General styles */
body {
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f7fa;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container */
.container {
    width: 80%;
    max-width: 900px;
    background-color: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
}

/* Header */
.header {
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.header h1 {
    font-size: 2rem;
    color: #2c3e50;
    margin: 0;
}

/* Main content */
.main-content {
    padding: 20px 0;
}

.section {
    margin-bottom: 20px;
}

.section h2 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 10px;
}

.section p {
    font-size: 1rem;
    line-height: 1.6;
}

.section ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}

.section ul li {
    font-size: 1rem;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    border-top: 2px solid #e0e0e0;
    padding-top: 10px;
    text-align: center;
}

.footer p {
    font-size: 0.875rem;
    color: #95a5a6;
    margin: 0;
}
