/* Basic Reset */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
}

/* Overall Page Styles */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000; /* Black background */
    color: #fff; /* White text color */
    padding: 20px;
}

/* Container Styles for centering and formatting content */
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Styles for headings and paragraphs */
h1, h2, h3 {
    margin-bottom: 20px;
    color: #e8491d; /* Orange color for headings */
}

p {
    margin-bottom: 20px;
}

/* List styles */
ul {
    list-style-type: none;
}

/* Link styles */
a {
    color: #e8491d; /* Orange color for links */
    text-decoration: none;
}

a:hover {
    color: #f4f4f4; /* Light color on hover */
}

/* Navigation menu styles */
header {
    background: #333; /* Dark background for header */
    color: #fff;
    padding: 20px 0;
    margin-bottom: 30px;
}

header a {
    color: #fff; /* White color for nav links */
}

header ul {
    padding: 0;
    list-style: none;
    text-align: center;
}

header li {
    display: inline;
    margin: 0 20px;
}

/* Spacing for sections and headings */
section {
    margin-bottom: 30px;
}

/* Footer styles */
footer {
    background: #333; /* Dark background for footer */
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsive design for smaller screens */
@media only screen and (max-width: 600px) {
    .container {
        width: 100%;
    }

    header li {
        display: block;
        margin-top: 10px;
    }
}

/* New style for the logo image in the heading */
h1 img {
    vertical-align: middle;
    height: 50px; /* Adjust height as needed */
}
