:root {
    --primary-color: #3b82f6;
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --accent-color: #ff6b6b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 60px;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
    background: linear-gradient(135deg, var(--primary-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 24px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

ul {
    margin-bottom: 24px;
    padding-left: 32px;
}

li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.contact-info {
    background: #f1f5f9;
    padding: 32px;
    border-radius: 20px;
    margin-top: 60px;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}

.contact-info a:hover {
    border-bottom-color: var(--primary-color);
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-bottom: 60px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 640px) {
    .container {
        margin: 0;
        border-radius: 0;
        padding: 40px 20px;
    }
    h1 {
        font-size: 2rem;
    }
}
