body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
    background: #ffcc00;
    padding: 20px 0;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: 2em;
    color: #333;
}

h2 {
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
    color: #333;
}

p {
    line-height: 1.6;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
}

figure {
    margin: 20px 0;
    text-align: center;
}

figure img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 5px;
}

figcaption {
    font-size: 0.9em;
    color: #666;
    margin-top: 5px;
}

a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}