/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0 20px;
}

/* Section and Article */
section {
    max-width: 1200px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

article {
    margin-top: 20px;
}

/* Headings */
h1 {
    font-size: 2.5em;
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 10px;
}

h2 {
    font-size: 1.8em;
    color: #0056b3;
    border-left: 5px solid #0056b3;
    padding-left: 15px;
    margin-top: 30px;
}

h3 {
    font-size: 1.4em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Paragraphs */
p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9em;
    color: #777;
}

/* Links */
a {
    color: #0056b3;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Highlighting Scriptures */
p a.scripture {
    font-weight: bold;
    color: #d9534f;
}

/* Styling Lists */
ul {
    margin-left: 20px;
}

ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.2em;
    }

    section {
        padding: 15px;
    }
}
