/* Basic reset to avoid browser inconsistencies */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styling */
header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin-bottom: 10px;
    font-size: 3em;
    text-transform: uppercase;
}

header h2 {
    font-size: 1.5em;
    font-style: italic;
}

/* Hero section styling */
.hero {
    text-align: center;
    margin: 20px auto;
}

.hero img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 10px;
}

/* Paragraph styling */
p {
    text-align: center;
    font-size: 1.2em;
    margin: 20px 0;
}

/* Footer styling */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
}

footer::before {
    content: "\00A9"; /* Unicode for the copyright symbol */
    margin-right: 5px;
}
