* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #202124;
    color: #ffffff;
    line-height: 1.6;
}

header {
    background-color: #040713;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.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;
}

nav {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 20px;
}

main {
    flex: 1;
    background-color: #202124;
    padding: 30px;
    border-radius: 8px;
}

aside {
    width: 250px;
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

aside h3 {
    margin-bottom: 15px;
    color: #e3bf5a;
}

aside ul {
    list-style: none;
}

aside ul li {
    margin-bottom: 10px;
}

aside ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

aside ul li a:hover {
    color: #e3bf5a;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    background-color: #e3bf5a;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn:hover {
    background-color: #d4af49;
}

h1 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 2.5em;
}

h2 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2em;
}

h3 {
    color: #ffffff;
    margin-top: 25px;
    margin-bottom: 12px;
    font-size: 1.5em;
}

p {
    margin-bottom: 15px;
    color: #ffffff;
}

ul, ol {
    margin-left: 30px;
    margin-bottom: 15px;
    color: #ffffff;
}

li {
    margin-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #2a2a2a;
}

th, td {
    padding: 12px;
    text-align: left;
    border: 1px solid #404040;
    color: #ffffff;
}

th {
    background-color: #040713;
    color: #e3bf5a;
    font-weight: bold;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
}

.content-image {
    text-align: center;
    margin: 30px 0;
}

.content-image a {
    display: inline-block;
}

footer {
    background-color: #040713;
    padding: 30px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

footer a {
    color: #e3bf5a;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

footer p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    
    aside {
        width: 100%;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    nav {
        flex-direction: column;
        width: 100%;
    }
    
    nav a {
        text-align: center;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
}

