@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    line-height: 1.6;
    color: #dbdddf;
    background-color: #0C0D0E;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
}

.logo {
    text-decoration: none;
    color: #dbdddf;
    font-size: 2rem;
    font-weight: 900;
}
header h1 {
    margin-bottom: 10px;
    font-size: 2rem;
    font-weight: 900;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-right: 20px;
}

nav a {
    text-decoration: none;
    color: #dbdddf;
    font-size: 1rem;
    font-weight: 400;
}

nav a:hover {
    color: #dbdddf;
}

/* Main content styles */
main {
    margin-bottom: 40px;
}

section, article {
    margin-bottom: 30px;
}

h1 {
    font-size: 3em;
    font-weight: 800;
    margin: 20px 0;
}

h2 {
    margin: 25px 0 15px;
    font-size: 2rem;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    font-weight: 400;
}

a {
    color: cyan;
    text-decoration: none;
}

/* Footer styles */
footer {
    padding-top: 20px;
} 

footer p {
    font-size: 1rem;
    font-weight: 400;
}

/* Legal specific styles */
article header h1 {
    font-size: 2em;
    margin: 20px 0;
    text-align: center;
}

article p, article ul {
    margin-bottom: 15px;
}

article ul, article ol {
    padding-left: 20px;
}

article li {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-weight: 400;
}

/* Table styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}   

table th, table td {
    padding: 10px;
    border: 1px solid #3c4144;
}

table th {
    background-color: #242729;
}

table td {
    background-color: #242729;
}