* {
    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: #FFD166;
    color: red;
    text-align: center;
    padding: 8px 5%;
    font-size: 13px;
    font-weight: bold;
    position: sticky;
    top: 0;
    z-index: 1000;
    line-height: 1.3;
}
header {
    background-color: #0B132B;
    color: white;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
header a {
    color: white;
    text-decoration: none;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: #06D6A0;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}
nav a:hover {
    color: #FFD166;
}
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #06D6A0;
}
main {
    padding: 40px 5%;
    max-width: 1000px;
    margin: 40px auto;
    background: white;
    min-height: 60vh;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
    color: #0B132B;
    margin-bottom: 20px;
    font-size: 32px;
}
h2 {
    color: #0B132B;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 24px;
    border-bottom: 2px solid #06D6A0;
    padding-bottom: 5px;
    display: inline-block;
}
h3 {
    color: #0B132B;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 20px;
}
p, ul, ol {
    margin-bottom: 20px;
    font-size: 16px;
}
ul, ol {
    padding-left: 20px;
}
li {
    margin-bottom: 10px;
}
.hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    margin-bottom: 30px;
    border-radius: 8px;
}
footer {
    background-color: #0B132B;
    color: white;
    padding: 40px 5%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}
.footer-col {
    flex: 1;
    min-width: 250px;
}
.footer-col h3 {
    color: #06D6A0;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}
.footer-col a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}
.footer-col a:hover {
    color: #FFD166;
}
.footer-bottom {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: #ccc;
}
.footer-bottom p {
    margin-bottom: 8px;
    font-size: 13px;
}
@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        padding: 6px 5%;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }
    nav ul {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 20px;
        gap: 10px;
    }
    nav ul.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        right: 5%;
        top: 20px;
    }
    main {
        margin: 20px 5%;
        padding: 20px;
    }
}
