/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #f5ded2;
    padding: 40px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #a77e6a;
}

/* Main Content */
.content {
    padding: 60px 0;
}

.blog-post {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 900px;
}

section {
    margin-bottom: 40px;
}

/* Sections */
section h2 {
    font-size: 2rem;
    color: #a77e6a;
    margin-bottom: 20px;
}

section p {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
}

section ul, section ol {
    margin-left: 20px;
}

section ul li, section ol li {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.8;
}

section ul li strong, section ol li strong {
    color: #a77e6a;
}

/* Footer */
footer {
    background-color: #f5ded2;
    padding: 20px 0;
    text-align: center;
}

footer p {
    color: #a77e6a;
    font-size: 1rem;
}

