* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #05101c;
    color: #bfa06f;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #050b0f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 10px;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

nav a {
    color: #bfa06f;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #0f2226;
}

.container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    display: flex;
    gap: 30px;
    flex: 1;
}

main {
    flex: 1;
    background-color: #142526;
    padding: 30px;
    border-radius: 8px;
}

aside {
    width: 300px;
    background-color: #0f2226;
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

aside h3 {
    margin-bottom: 15px;
    color: #bfa06f;
}

aside ul {
    list-style: none;
}

aside ul li {
    margin-bottom: 10px;
}

aside ul li a {
    color: #bfa06f;
    text-decoration: none;
    transition: color 0.3s;
}

aside ul li a:hover {
    color: #11cfcb;
}

footer {
    background-color: #050b0f;
    padding: 30px 20px;
    margin-top: 40px;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #bfa06f;
    text-decoration: none;
}

footer a:hover {
    color: #11cfcb;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #bfa06f;
}

h2 {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #bfa06f;
}

h3 {
    font-size: 1.5em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #bfa06f;
}

p {
    margin-bottom: 15px;
}

ul, ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

li {
    margin-bottom: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table th, table td {
    border: 1px solid #bfa06f;
    padding: 12px;
    text-align: left;
}

table th {
    background-color: #0f2226;
    color: #bfa06f;
    font-weight: bold;
}

table td {
    background-color: #142526;
}

.cta-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.btn {
    background-color: #11cfcb;
    color: #0e2829;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn:hover {
    background-color: #0fb8b4;
}

.content-image {
    margin: 20px 0;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    aside {
        width: 100%;
    }

    nav {
        justify-content: center;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}
