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

:root {
    --text: #333;
    --text-secondary: #6d6d6d;
    --bg: #fff;
    --link: #333;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
}

a {
    color: var(--link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    padding: 40px 0;
}

.logo {
    font-size: 14px;
}

/* Main Content */
main {
    padding: 0 0 40px;
}

h1 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

p {
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 500px;
}

ul {
    list-style: none;
    color: var(--text-secondary);
}

li {
    margin-bottom: 8px;
}

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

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

.section-title {
    font-size: 11px;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

/* Grid Items */
.grid-item {
    margin-bottom: 15px;
}

.grid-item:last-child {
    margin-bottom: 0;
}

.grid-item p {
    font-size: 13px;
}

/* Footer */
footer {
    padding: 40px 0;
}

.copyright {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Legal Pages */
.legal-content {
    max-width: 600px;
}

.legal-content h1 {
    margin-bottom: 10px;
}

.legal-content .date {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.legal-content p {
    max-width: 100%;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 600px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
