:root {
    --primary-color: #0071e3;
    --primary-hover: #0077ed;
    --text-dark: #1d1d1f;
    --text-gray: #86868b;
    --bg-light: #f5f5f7;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.5;
    color: var(--text-dark);
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
}

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

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
}

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

h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-gray);
    font-size: 0.9rem;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

p {
    margin-bottom: 15px;
    color: #515154;
    text-align: justify;
}

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

ul.list li {
    font-size: 0.95rem;
    color: #515154;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

ul.list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

footer {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        margin: 20px 15px;
        padding: 25px;
    }

    h1 {
        font-size: 1.6rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}
