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

:root {
    --white: #ffffff;
    --bg: #FFFDF6;
    --text: #2E1F0F;
    --text-secondary: #5C4030;
    --accent: #2D8A4E;
    --accent-light: #7EC89A;
    --border: #E8D9B8;
    --max-width: 780px;
    --radius: 8px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255, 253, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    max-width: 1080px; margin: 0 auto; padding: 0 2rem;
    display: flex; align-items: center; justify-content: space-between; height: 64px;
}

.logo {
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem; font-weight: 800;
    color: var(--accent); text-decoration: none;
}

nav { display: flex; gap: 1.5rem; }

nav a {
    font-size: 0.82rem; font-weight: 600; color: var(--text-secondary);
    text-decoration: none; letter-spacing: 0.03em; transition: color 0.2s ease;
}

nav a:hover { color: var(--accent); }

main { padding: 7rem 2rem 4rem; }

.legal-inner { max-width: var(--max-width); margin: 0 auto; }

.legal-label {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}

.legal-inner h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.75rem; font-weight: 800; color: var(--text);
    margin-bottom: 0.5rem; line-height: 1.3;
}

.legal-date {
    font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 2.5rem;
}

.legal-inner h2 {
    font-size: 1.15rem; font-weight: 700; color: var(--text);
    margin-top: 2rem; margin-bottom: 0.75rem; line-height: 1.4;
}

.legal-inner h3 {
    font-size: 0.95rem; font-weight: 700; color: var(--text);
    margin-top: 1.25rem; margin-bottom: 0.5rem;
}

.legal-inner p {
    color: var(--text-secondary); margin-bottom: 1rem; font-size: 0.95rem;
}

.legal-inner ul, .legal-inner ol {
    color: var(--text-secondary); margin-bottom: 1rem; padding-left: 1.5rem;
    font-size: 0.95rem;
}

.legal-inner li { margin-bottom: 0.4rem; }

.legal-inner a { color: var(--accent); text-decoration: none; }
.legal-inner a:hover { text-decoration: underline; }

.legal-inner strong { color: var(--text); }

/* FAQ specific */
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-item summary {
    padding: 14px 16px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    color: var(--text);
    transition: background 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ' +'; color: var(--accent); font-weight: 800; }
.faq-item[open] summary::after { content: ' −'; }
.faq-item summary:hover { background: rgba(45, 138, 78, 0.05); }

.faq-item .faq-answer {
    padding: 0 16px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

footer {
    background: var(--white); border-top: 1px solid var(--border); padding: 3rem 2rem;
}

.footer-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.footer-inner p { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.8; }
.footer-inner a { color: var(--accent); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    main { padding: 6rem 1.5rem 3rem; }
    nav { gap: 1rem; }
    nav a { font-size: 0.75rem; }
    .legal-inner h1 { font-size: 1.4rem; }
}
