/* Static Pages Premium Styles */
.page-container {
    padding: 120px 20px 80px;
    min-height: 80vh;
    background: #fdfdfd;
}

.page-header-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
    margin-bottom: -60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.page-title-main {
    font-size: 48px;
    font-weight: 800;
    margin: 40px 0 20px;
    letter-spacing: -1px;
    color: #fff;
}

.breadcrumb-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-premium a {
    color: #ff6b35;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-premium a:hover {
    color: #fff;
    text-decoration: underline;
}

.content-card-premium {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.page-rich-content {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
}

.page-rich-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-rich-content h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: #ff6b35;
    border-radius: 2px;
}

.page-rich-content p {
    margin-bottom: 25px;
}

.page-rich-content ul, .page-rich-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.page-rich-content li {
    margin-bottom: 12px;
}

.last-updated-pill {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
}

@media (max-width: 768px) {
    .content-card-premium {
        padding: 30px 20px;
        border-radius: 0;
    }
    .page-title-main {
        font-size: 32px;
    }
    .page-header-banner {
        padding: 60px 20px;
    }
}
