* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #F4F1EC;
    color: #151B33;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 680px;
    margin: 0 auto;
    padding: 60px 24px;
}

header {
    text-align: center;
    margin-bottom: 56px;
}

h1 {
    font-family: 'Matemasie', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #151B33;
}

.intro {
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.tagline,
.last-updated {
    color: #545A70;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1F3F80;
}

.legal h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

p {
    margin-bottom: 14px;
}

ul {
    margin-left: 24px;
    margin-bottom: 14px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #1F3F80;
    text-decoration: underline;
}

a:hover {
    color: #B84A0C;
}

.accent {
    color: #B84A0C;
}

.button {
    display: inline-block;
    background-color: #1F3F80;
    color: #FFFFFF;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.button:hover {
    background-color: #B84A0C;
    color: #FFFFFF;
}

.faq-item {
    margin-bottom: 16px;
    background-color: #FFFFFF;
    border: 1px solid #E3DFD7;
    padding: 20px;
    border-radius: 12px;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-weight: 600;
    margin-bottom: 6px;
}

footer {
    text-align: center;
    padding-top: 32px;
    margin-top: 56px;
    border-top: 1px solid #E3DFD7;
    color: #545A70;
    font-size: 0.9rem;
}

footer a {
    color: #545A70;
}

@media (max-width: 480px) {
    .container {
        padding: 40px 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }
}
