/* Existing styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

header {
    background-color: #007acc; /* Official blue color */
    color: white;
    padding: 1rem 0;
    text-align: center;
}

nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

#hero {
    background: #005ea6; /* Darker blue */
    color: white;
    padding: 2rem;
    text-align: center;
}

section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 800px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #007acc;
}

.cta-button {
    display: inline-block;
    background-color: #007acc;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}

.cta-button:hover {
    background-color: #005ea6; /* Darker blue on hover */
}

footer {
    text-align: center;
    padding: 2rem 0;
    background: #007acc;
    color: white;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-menu {
    margin-bottom: 1rem;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}

.footer-menu a:hover {
    text-decoration: underline;
}

/* Improving article structure */
section {
    padding: 2rem; /* Maintain existing padding */
    margin: 1rem auto; /* Center the section */
    max-width: 800px; /* Max width for content */
    background: white; /* Maintain background */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

/* Headings */
h2, h3, h4 {
    margin-top: 30px; /* Space above headings */
    margin-bottom: 15px; /* Space below headings */
}

h2 {
    color: #007acc; /* Keep header color consistent */
}

h3, h4 {
    color: #005ea6; /* Slightly darker color for subheadings */
}

/* Paragraphs */
p {
    margin-bottom: 20px; /* Space between paragraphs */
}

/* List styles */
ul {
    margin-left: 20px; /* Indentation for lists */
    margin-bottom: 20px; /* Space below lists */
}

ul li {
    margin-bottom: 10px; /* Space between list items */
}

/* Call to Action Button */
.cta-button {
    display: inline-block; /* Ensure it behaves like a button */
    background-color: #007acc; /* Button color */
    color: white; /* Text color */
    padding: 10px 20px; /* Padding for button */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    margin-top: 20px; /* Space above button */
    margin-bottom: 40px; /* Space below button */
}

.cta-button:hover {
    background-color: #005ea6; /* Darker blue on hover */
}

/* Footer adjustments */
.footer-menu {
    margin: 20px 0; /* Margin around footer menu */
}

.footer-menu a {
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
    margin: 0 15px; /* Space between footer links */
}

.footer-menu a:hover {
    text-decoration: underline; /* Underline on hover */
}
