:root {
    --text:#060606;
    --muted:#4a4a4a;
    --line:#eeeeee;
    --bg:#ffffff;
    --bg-alt:#f9f9f9;
}

html {
    background:var(--bg);
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color:var(--text);
    margin:0;
    line-height:1.62;
    font-weight:400;
}

.container {
    max-width:760px;
    margin:auto;
    padding:36px 20px;
}

h1 {
    font-size:30px;
    font-weight:600;
    margin-bottom:10px;
    color:#000;
}

h2 {
    font-size:22px;
    font-weight:500;
    margin-bottom:14px;
    color:#000;
}
h3 {
    font-size:18px;
    font-weight:500;
    margin-top:18px;
    margin-bottom:6px;
    color:#000;
}

p {
    color:var(--muted);
    max-width:720px;
    margin-top:0.45em;
    margin-bottom:0.9em;
}

ul {
    color:var(--muted);
}

a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 2px;
}

a:hover {
    color: #000000;
    text-decoration-thickness: 2px;
}

header {
    padding-top:6px;
    padding-bottom:6px;
    background-color: var(--bg-alt);
}

header .container {
    padding-top:14px;
    padding-bottom:8px;
}

main > section:first-of-type {
    background-color: var(--bg);
}

section {
    border-top:1px solid var(--line);
}


.grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.footer {
    border-top:1px solid var(--line);
}

.footer .container {
    padding-top:18px;
    padding-bottom:18px;
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    align-items:center;
}

.tagline {
    font-size:20px;
    font-weight:500;
    margin-top:4px;
    margin-bottom:6px;
    color:#000;
}

@media (max-width:800px) {

    .grid {
        grid-template-columns:1fr;
    }

}
.nav {
    margin-top:8px;
    margin-bottom:32px;
}

.nav a {
    margin-right:18px;
    text-decoration: underline;
    text-underline-offset: 2px;
    color:#6b6f76;
    font-size:16px;
    padding:4px 0;
    display:inline-block;
}

.nav a:hover {
    color:#0b0b0c;
}

.faq {
    margin-top:20px;
}

.faq-item {
    border-top:1px solid var(--line);
    padding:14px 0;
}

.faq-question {
    background:none;
    border:none;
    font-size:16px;
    text-align:left;
    width:100%;
    cursor:pointer;
    color:var(--text);
    padding:0;
}

.faq-answer {
    display:none;
    margin-top:8px;
    color:var(--muted);
    max-width:720px;
}

.faq-item.open .faq-answer {
    display:block;
}

.hero + section {
    border-top:1px solid var(--line);
}

main > section:nth-of-type(odd) {
    background-color: var(--bg);
}

main > section:nth-of-type(even) {
    background-color: var(--bg-alt);
}
.hero {
    padding: 4px 0 22px 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.06);
    padding: 14px 20px;
    display: none;
    z-index: 9999;
}

.cookie-inner {
    max-width: 760px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap;
}

.cookie-actions {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.cookie-inner span {
    color: var(--muted);
    font-size: 14px;
}

.cookie-actions button {
    border: 1px solid #000;
    background: none;
    padding: 6px 12px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

#cookie-accept {
    background: #000;
    color: #fff;
}

.cookie-actions button:hover {
    background: #000;
    color: #fff;
}

@media (max-width: 640px) {
    .cookie-inner {
        flex-wrap: wrap;
    }
    .cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}