:root {
    --primary: #A89882;
    --primary-light: #C8B8A5;
    --primary-dark: #8A7B69;
    --background: #F6F3EF;
    --card: #FFFFFF;
    --text: #3D3630;
    --text-muted: #736A62;
    --border: #DED7D1;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    text-align: center;
    padding: 4rem 0;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: var(--primary-dark);
}

.card {
    background: var(--card);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(61, 54, 48, 0.05);
    margin-bottom: 2rem;
}

h1 {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

h2 {
    font-family: Georgia, serif;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--primary-dark);
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

li {
    margin-bottom: 0.5rem;
}

.footer {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: transform 0.2s, background-color 0.2s;
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
    display: block;
}
