/* General Body Styles */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 1rem;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Main Content Styles */
main {
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    flex: 1;
}

main h1, main h2, main h3 {
    color: #000; /* Change headers to black */
    font-family: 'Arial Black', 'Helvetica Bold', sans-serif;
    font-weight: bold;
}

main p {
    margin: 1rem 0;
}

/* Image Styles */
main img {
    max-width: 70%; /* Make images smaller */
    height: auto;
    display: block;
    margin: 2rem auto; /* Center images */
}

/* Footer Styles */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: auto; /* Push footer to the bottom */
}

/* Subheading Styles */
.subheading {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.subheading-number {
    font-size: 4rem; /* Adjust size to match the total height of two lines of text */
    line-height: 1;
    margin-right: 0.5rem;
}

.subheading-text {
    display: flex;
    flex-direction: column;
}

.subheading-text span {
    font-weight: normal;
    font-size: 1rem;
    font-style: italic;
}

.subheading-text h3 {
    margin: 0;
    font-weight: normal;
    font-size: 1.2rem;
}
