/* Reset some basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header styling */
header {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1.5em 0;
    margin-bottom: 20px;
}

header h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

/* Section styling */
section {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

section h2 {
    color: #2980b9;
    margin-bottom: 0.5em;
}

section p {
    font-size: 1.1em;
    margin-bottom: 1em;
}

section img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 1em;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 1em 0;
    background-color: #34495e;
    color: white;
    margin-top: 20px;
    font-size: 0.9em;
}
