* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
.top-bar {
    background-color: #FFDF00;
    color: red;
    text-align: center;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: bold;
    width: 100%;
    z-index: 1000;
}
.header {
    background-color: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #1B5E20;
}
.nav-menu {
    display: flex;
    gap: 20px;
    list-style: none;
}
.nav-menu a {
    color: #1B5E20;
    font-weight: bold;
}
.nav-menu a:hover {
    color: #1565C0;
}
.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}
h1 {
    color: #1B5E20;
    margin-bottom: 20px;
    font-size: 32px;
}
h2 {
    color: #1565C0;
    margin: 30px 0 15px;
    font-size: 24px;
}
p {
    margin-bottom: 15px;
}
ul.content-list, ol.content-list {
    margin-bottom: 15px;
    padding-left: 20px;
}
ul.content-list li, ol.content-list li {
    margin-bottom: 8px;
}
.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}
.footer {
    background-color: #1B5E20;
    color: #fff;
    padding-top: 40px;
    margin-top: 40px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 5% 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    color: #FFDF00;
    margin-bottom: 15px;
}
.footer-col p, .footer-col a {
    color: #ddd;
    margin-bottom: 10px;
    display: block;
}
.footer-col a:hover {
    color: #FFDF00;
}
.footer-bottom {
    background-color: #113a14;
    padding: 20px 5%;
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #2a7a30;
}
.footer-bottom p {
    margin-bottom: 5px;
    color: #ccc;
}
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 5%;
    }
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-content {
        flex-direction: column;
    }
}
