/* General Styles */
body {
    font-family: 'Georgia', serif;
    background-color: #f4e9dc; /* Soft cream background */
    color: #2c2c2c;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Header Styles */
header {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #d4a373; /* warm, meditative color */
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Centered Image */
.center-image {
    display: block;
    max-width: 400px;
    width: 80%;
    margin: 1rem auto;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Main Section */
main {
    padding: 2rem 1rem;
}

.centered-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.centered-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #6b4226; /* slightly darker accent */
}

.centered-text h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #8c5e3c;
}

.centered-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.centered-text ul {
    list-style-type: none;
    padding: 0;
}

.centered-text ul li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Chapter Links */
.chapter-links a {
    display: inline-block;
    margin: 0.5rem 1rem;
    padding: 0.5rem 1rem;
    background-color: #a67c52;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.chapter-links a:hover {
    background-color: #8c5e3c;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background-color: #d4a373;
    color: #fff;
    margin-top: 2rem;
}