* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #3d3d3d;
    background-color: #faf8f3;
    line-height: 1.8;
}

header {
    background-color: #faf8f3;
    border-bottom: 1px solid #f0ebe0;
    padding: 20px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #b8956a;
    letter-spacing: 1px;
    text-decoration: none;
}

nav a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #d4a574;
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #3d3d3d;
    margin-bottom: 12px;
}

.last-updated {
    font-size: 14px;
    color: #9a9a9a;
    margin-bottom: 40px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #3d3d3d;
    margin-top: 40px;
    margin-bottom: 16px;
}

p {
    color: #6b6b6b;
    margin-bottom: 16px;
    line-height: 1.8;
}

ul {
    color: #6b6b6b;
    margin-left: 24px;
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
}

footer {
    background: #3d3d3d;
    color: white;
    padding: 40px;
    text-align: center;
    font-size: 14px;
}

footer a {
    color: #d4a574;
    text-decoration: none;
}
