/* General Reset */
body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Header Styling */
header {
    background: #0047AB;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    font-size: 2.5em;
}

header p {
    font-size: 1.2em;
    margin-top: 10px;
}

/* Navigation Styling */
nav {
    background: #333;
    color: #fff;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav li {
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: inline-block;
}

nav a:hover {
    background: #575757;
    border-radius: 5px;
}

/* Main Content Styling */
main {
    padding: 20px;
    background: #f9f9f9;
}

main section {
    margin-bottom: 20px;
}

main h2 {
    color: #0047AB;
    margin-bottom: 10px;
}

main ul {
    list-style: none;
    padding-left: 20px;
}

main ul li {
    margin-bottom: 5px;
}

/* Footer Styling */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer a {
    color: #00A4FF;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Header Styling */
header {
    background: url('images/cloud1.webp') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

/* Add a semi-transparent overlay to ensure text is readable */
header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

header h1, header p {
    position: relative;
    z-index: 2;
}
