* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}
.top-bar {
    background-color: #FFDF00;
    color: #D32F2F;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: bold;
    width: 100%;
    position: relative;
    z-index: 1000;
    line-height: 1.5;
}
header {
    background-color: #0F172A;
    color: white;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: white;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover {
    color: #22C55E;
}
main {
    padding: 40px 5%;
    max-width: 1200px;
    margin: auto;
    background: white;
    min-height: 60vh;
}
h1 {
    color: #0F172A;
    margin-bottom: 20px;
}
h2 {
    color: #22C55E;
    margin-top: 30px;
    margin-bottom: 15px;
}
p {
    margin-bottom: 15px;
}
ul, ol {
    margin-bottom: 15px;
    padding-left: 20px;
}
.hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}
footer {
    background-color: #0F172A;
    color: white;
    padding: 40px 5% 0;
    margin-top: 40px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 40px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    color: #22C55E;
    margin-bottom: 15px;
}
.footer-col p, .footer-col a {
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
}
.footer-col a:hover {
    color: #22C55E;
}
.footer-bottom {
    background-color: #0B1120;
    text-align: center;
    padding: 20px 5%;
    font-size: 12px;
    border-top: 1px solid #E2E8F0;
    color: #E2E8F0;
}
.footer-bottom p {
    margin-bottom: 5px;
}
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        margin-top: 15px;
        flex-direction: column;
        gap: 10px;
    }
    .footer-container {
        flex-direction: column;
    }
}
