.static-page-content {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 70vh;
}

.static-page-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 60px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.static-page-wrapper h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1e293b;
    line-height: 1.2;
    border-bottom: 4px solid #3b82f6;
    padding-bottom: 20px;
}

.static-page-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 14px;
}

.static-page-meta i {
    color: #3b82f6;
}

.static-page-body {
    line-height: 1.9;
    color: #334155;
    font-size: 16px;
}

.static-page-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #1e293b;
    padding-bottom: 12px;
    border-bottom: 2px solid #e2e8f0;
}

.static-page-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px 0;
    color: #334155;
}

.static-page-body p {
    margin: 16px 0;
    text-align: justify;
}

.static-page-body ul,
.static-page-body ol {
    margin: 20px 0;
    padding-left: 32px;
}

.static-page-body ul li,
.static-page-body ol li {
    margin: 12px 0;
    line-height: 1.8;
}

.static-page-body strong {
    color: #1e293b;
    font-weight: 600;
}

.static-page-body a {
    color: #3b82f6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.static-page-body a:hover {
    border-bottom-color: #3b82f6;
}

.static-page-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.static-page-body table td {
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
}

.static-page-body table tr:nth-child(even) {
    background: #f8fafc;
}

.static-page-body table td:first-child {
    font-weight: 600;
    color: #1e293b;
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .static-page-wrapper {
        padding: 30px 24px;
    }
    
    .static-page-wrapper h1 {
        font-size: 32px;
    }
    
    .static-page-body h2 {
        font-size: 26px;
    }
    
    .static-page-body h3 {
        font-size: 20px;
    }
}
