* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #030303;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background-color: #f9dc85;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 46px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: #894d0c;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #ffffa9;
    border-radius: 5px;
    font-weight: bold;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}

.content {
    flex: 1;
    background-color: #030303;
    padding: 30px;
    border-radius: 8px;
}

.sidebar {
    width: 250px;
    background-color: #0f1010;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar h3 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 18px;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    margin-bottom: 10px;
}

.sidebar ul li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.sidebar ul li a:hover {
    background-color: rgba(255,255,255,0.1);
}

h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #ffffff;
}

h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #ffffff;
}

p {
    margin-bottom: 15px;
    color: #ffffff;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 8px;
    color: #ffffff;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #0f1010;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #333;
    color: #ffffff;
}

table th {
    background-color: #0f1010;
    font-weight: bold;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffa9;
    color: #894d0c;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: opacity 0.3s;
    text-align: center;
}

.btn:hover {
    opacity: 0.8;
}

.content-image {
    text-align: center;
    margin: 30px 0;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

footer {
    background-color: #f9dc85;
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

footer a {
    color: #894d0c;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    color: #894d0c;
    margin: 10px 0;
}

@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        position: relative;
        top: 0;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    nav {
        width: 100%;
        justify-content: center;
    }
    
    h1 {
        font-size: 24px;
    }
    
    h2 {
        font-size: 20px;
    }
}

