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

body {
    font-family: Georgia, serif;
    background: linear-gradient(135deg, #2c1810 0%, #8b3a3a 100%);
    color: #e8d4b0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    border-bottom: 2px solid #c4975e;
    padding-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    color: #d4986f;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.subtitle {
    font-style: italic;
    font-size: 1.2em;
    color: #b8916a;
}

section {
    margin-bottom: 40px;
    background: rgba(0,0,0,0.3);
    padding: 25px;
    border-radius: 5px;
    border-left: 4px solid #c4975e;
}

h2 {
    color: #d4986f;
    margin-bottom: 15px;
    font-size: 1.8em;
}

p {
    margin-bottom: 15px;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(196,151,94,0.3);
}

li:last-child {
    border-bottom: none;
}

strong {
    color: #d4986f;
}

footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #c4975e;
    font-size: 0.9em;
    color: #b8916a;
}
