body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px #ccc;
}
header, section {
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
img {
    width: 80%; /* Resize image to be 80% of the container's width */
    height: auto; /* Maintain the aspect ratio of the image */
    display: block; /* Ensures the image is block level to take width properly */
    margin: 20px auto; /* Centers the image horizontally with margin and maintains space */
}
h1, h2 {
    color: #444;
}
p {
    margin: 10px 0;
}
footer {
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
    border-top: 1px solid #ddd;
}
