:root {
    --cream: #FBF8F4;
    --cream-dark: #F5F0E8;
    --olive: #5D6152;
    --olive-dark: #4A4D42;
    --olive-light: #5D6152;
    --terracotta: #A65D3F;
    --terracotta-dark: #8B4D35;
    --text: #3D3D3D;
    --text-light: #595959;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.back-link {
    display: inline-block;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--olive-light);
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--terracotta);
}

h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--olive-dark);
}

.last-updated {
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 0.9rem;
}

h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 500;
    margin-top: 36px;
    margin-bottom: 12px;
    color: var(--olive);
}

p {
    margin-bottom: 16px;
    color: var(--text);
}

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

li {
    margin-bottom: 8px;
    color: var(--text);
}

a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--terracotta-dark);
}

footer {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid rgba(193, 122, 91, 0.2);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

footer a {
    color: var(--olive-light);
}

footer a:hover {
    color: var(--terracotta);
}
