:root {
    --bg:      #FFF9F0;
    --text:    #2D3748;
    --primary: #FF6B6B;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Fredoka', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    padding: 24px 16px 60px;
}

.page-container {
    max-width: 720px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255,107,107,0.15);
}

.page-header h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 16px;
    transition: opacity 0.2s;
}
.back-link:hover { opacity: 0.7; }

.content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin: 28px 0 12px;
}

.content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 20px 0 8px;
}

.content p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 12px;
}

.content ul, .content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.content li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4A5568;
    margin-bottom: 6px;
}

.content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}
.content a:hover { text-decoration: underline; }

.footer-nav {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    font-size: 0.85rem;
    color: #a0aab4;
    line-height: 2;
}

.footer-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-nav a:hover { text-decoration: underline; }
