:root {
    --brand-color: #ffdd2d;
    --text-color: #333333;
    --bg-color: #f7f9fa;
    --white: #ffffff;
    --link-color: #005bff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #000;
}

.nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #000;
    border-bottom: 2px solid var(--brand-color);
}

/* Main Content */
.content-section {
    background: var(--white);
    padding: 40px;
    margin: 30px 0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

h1 { font-size: 2rem; margin-bottom: 20px; line-height: 1.3;}
h2 { font-size: 1.5rem; margin: 30px 0 15px; border-bottom: 2px solid var(--brand-color); padding-bottom: 5px; display: inline-block;}
h3 { font-size: 1.2rem; margin: 20px 0 10px; }

p { margin-bottom: 15px; }

a {
    color: var(--link-color);
    text-decoration: none;
}
a:hover { text-decoration: underline; }

ul {
    margin: 0 0 20px 20px;
}
li { margin-bottom: 8px; }

/* Table styles */
.table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 0.95rem;
}

th {
    background-color: var(--brand-color);
    color: #000;
    font-weight: 600;
}

/* FAQ */
.faq-item {
    background: #fafafa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid var(--brand-color);
}
.faq-item p { margin-bottom: 5px; }
.faq-item p:last-child { margin-bottom: 0; }

/* Footer */
.footer {
    background-color: #222;
    color: #ccc;
    padding: 40px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer a { color: #fff; }
.disclaimer { margin-bottom: 15px; font-style: italic;}
.footer-links a { margin: 0 10px; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none; /* Hidden by default, JS will show */
}

.cookie-banner p { margin: 0; font-size: 0.9rem;}

.cookie-btn {
    background-color: var(--brand-color);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn:hover { background-color: #e6c627; }

@media (max-width: 768px) {
    .header-container { flex-direction: column; height: auto; padding: 15px 0;}
    .nav { margin-top: 15px; }
    .nav a { margin: 0 10px; }
    .content-section { padding: 20px; }
}