/* General Body & Typography */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border: 3px solid #c00000; /* Red border */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #c00000; /* Red headings */
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2em;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-top: 40px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 30px;
}

p {
    margin-bottom: 1em;
    text-align: justify;
}

a {
    color: #c00000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header & Navigation */
header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 3px solid #c00000;
}

header .site-title {
    font-size: 2.8em;
    color: #c00000;
    margin: 0;
    font-weight: bold;
}

nav ul {
    list-style-type: none;
    padding: 0;
    background-color: #333;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    display: inline-block;
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    font-family: 'Helvetica', 'Arial', sans-serif;
    transition: background-color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    background-color: #c00000;
}

/* Main Content & Images */
main {
    padding: 10px;
}

.cover-image, .content-image {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.cover-image {
    max-width: 400px;
}

.content-image {
    max-width: 500px;
}

figure {
    margin: 20px 0;
    text-align: center;
}

figcaption {
    font-style: italic;
    color: #555;
    margin-top: 8px;
    font-size: 0.9em;
}

/* Specific Sections */
.intro-text {
    font-size: 1.2em;
    text-align: center;
    color: #333;
}

.main-title {
    font-size: 2.8em;
    color: #c00000;
    text-align: center;
    font-weight: bold;
}

.subtitle {
    font-size: 1.5em;
    color: #000;
    text-align: center;
}

.author-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
}

.promises-list {
    list-style-type: decimal;
    padding-left: 20px;
}

.promises-list li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.catechism-item {
    margin-bottom: 30px;
}

.catechism-item .question {
    font-weight: bold;
    font-size: 1.2em;
    color: #000;
}

.prayer-card {
    border: 2px solid #c00000;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
    text-align: center;
    background-color: #fffaf0;
}

.prayer-card img {
    max-width: 80%;
    margin-bottom: 15px;
}

.contact-info {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
}

.contact-info img {
    vertical-align: middle;
    width: 24px;
    height: 24px;
    margin-right: 8px;
}
.kazakhstan-flag {
    display: block;
    margin: 20px auto;
    width: 150px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 0.9em;
    color: #777;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    h1 {
        font-size: 2em;
    }
    
    .main-title {
        font-size: 2.2em;
    }

    nav ul li {
        display: block;
    }

    nav ul li a {
        display: block;
    }
}