body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    padding-top: 130px; /* Adjusted for fixed header */
    /* This body rule is superseded by the one below, removing it. */
}

header {
    background-color: #6A0DAD; /* Purple */
    color: white;
    padding: 1em 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

main {
    padding: 40px;
}

section {
    margin-bottom: 20px;
}

footer {
    background-color: #4B0082; /* Darker Purple */
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0; /* Ensured footer spans full width */
    z-index: 1000; /* Ensured footer is above other content */
}

.construction-icon {
    display: block;
    margin: 20px auto;
}

#construction {
    text-align: center;
}


/* Footer Sitemap Styles */
.sitemap {
    margin-bottom: 10px;
}

.sitemap a {
    color: yellow;
    text-decoration: none;
    margin: 0 5px; /* Adds a bit of space around separators */
}

.sitemap a:hover {
    color: #FFFFE0; /* LightYellow */
    text-decoration: underline;
}


/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin-top: 10px;
}

nav ul li {
    display: inline-block;
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: white; /* Ensured white for contrast */
    font-weight: bold;
    padding: 10px 15px; /* Increased padding */
    background-color: #7B1FA2; /* Slightly lighter purple for button look */
    border: 1px solid white; /* Added border */
    border-radius: 5px; /* Existing border-radius */
    transition: background-color 0.3s ease, color 0.3s ease; /* Added color transition */
}

nav ul li a:hover, nav ul li a.active {
    background-color: #4A0072; /* Darker purple for hover/active */
    color: #f0f0f0; /* Slightly off-white for hover text */
}

/* Blog Page Styles */
main section h2 {
    color: #6A0DAD; /* Purple */
}

/* Blog Post List */
.blog-post-list {
    list-style-type: none;
    padding: 0;
}

.blog-post-list li {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.blog-post-list li a {
    text-decoration: none;
    color: #6A0DAD; /* Purple */
    font-weight: bold;
    font-size: 1.2em;
}

.blog-post-list li a:hover {
    text-decoration: underline;
}

/* Blog Article Styles */
article {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 20px;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

article h2 {
    color: #6A0DAD; /* Purple */
    margin-top: 0;
}

article p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Adjust body padding if fixed footer is present */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;

    padding-top: 130px; /* For fixed header */
    padding-bottom: 70px; /* For fixed footer */
    margin: 0; /* Reset margin if it was set before */
    background-color: #f4f4f4;
    color: #333;
    font-family: Arial, sans-serif; /* Ensure font-family is not lost */

    padding-bottom: 70px; /* Increased padding for footer */

}
