/* Page wrapper */
.page-wrapper {
    max-width: 1400px;
    margin: 120px auto 0;
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); */
}

/* Header */
.page-header {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    /* margin-bottom: 40px; */
}

.site-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.page-title {
    font-size: 32px;
    font-weight: 800;
    margin: 12px 0 6px;
}

.page-meta {
    font-size: 14px;
    color: var(--muted);
}

/* Content */
.page-content h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.page-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    margin: 14px 0;
    color: #374151;
}

.page-content ul {
    margin: 16px 0 16px 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}


/* Print styles */
@media print {
    body {
        background: #ffffff;
    }

    .page-wrapper {
        margin: 0;
        padding: 40px;
        box-shadow: none;
        border-radius: 0;
    }

    .page-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 10px 40px;
    }
}