* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fafafa;
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

header {
    background: white;
    color: #1a1a1a;
    padding: 60px 50px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

header h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 0.95rem;
    opacity: 0.65;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
}

main {
    padding: 50px;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.policy-section p {
    margin-bottom: 14px;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.75;
}

.policy-section ul,
.policy-section ol {
    margin-left: 22px;
    margin-bottom: 16px;
}

.policy-section li {
    margin-bottom: 10px;
    color: #4a4a4a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.policy-section strong {
    color: #1a1a1a;
    font-weight: 600;
}

.policy-section code {
    background: #f5f5f5;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Courier, monospace;
    font-size: 0.88rem;
    color: #d73a47;
    font-weight: 500;
}

.footer-section {
    border: none;
    padding-top: 30px;
    padding-bottom: 0;
    margin-top: 0;
}

.footer-section p {
    font-size: 0.88rem;
    color: #999;
    text-align: center;
}

.footer-section p:first-child {
    font-weight: 500;
    color: #4a4a4a;
}

/* Responsive design */
@media (max-width: 600px) {
    body {
        padding: 20px 0;
    }

    .container {
        border-radius: 0;
        box-shadow: none;
    }

    header {
        padding: 40px 30px;
    }

    header h1 {
        font-size: 1.6rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    main {
        padding: 30px;
    }

    .policy-section {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .policy-section h2 {
        font-size: 1.1rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 0.9rem;
    }

    .policy-section ul,
    .policy-section ol {
        margin-left: 18px;
    }
}
