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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
    background: white;
}

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

/* Main Content */
.main-content {
    padding-top: 128px;
    padding-bottom: 80px;
}

.page-header {
    text-align: center;
    margin-bottom: 32px;
}

.page-header h1 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.last-updated {
    font-size: 1rem;
    color: #6b7280;
}

/* Content Container */
.content {
    max-width: 896px;
    margin: 0 auto;
    font-size: 1.125rem;
}

/* Sections */
.section {
    margin-bottom: 32px;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.section p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.75;
}

.section ul {
    list-style: disc;
    padding-left: 24px;
    color: #6b7280;
    margin-bottom: 16px;
}

.section ul li {
    margin-bottom: 8px;
    line-height: 1.75;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding-top: 96px;
        padding-bottom: 60px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .last-updated {
        font-size: 0.875rem;
    }

    .content {
        font-size: 1rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }

    .section ul {
        padding-left: 20px;
    }
}

