.page-banner {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    margin-top: 72px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?w=1920&h=400&fit=crop') center/cover no-repeat;
    opacity: 0.15;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30,64,175,0.7) 0%, rgba(30,64,175,0.85) 100%);
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.page-breadcrumb {
    font-size: 15px;
    opacity: 0.9;
}

.page-breadcrumb a {
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

.page-breadcrumb a:hover {
    color: #fff;
}

.page-breadcrumb .sep {
    margin: 0 10px;
    opacity: 0.6;
}

.page-breadcrumb .current {
    color: #fff;
}

.page-main {
    padding: 40px 0 60px;
    background: #f5f7fa;
    min-height: 60vh;
}

.notice-alert {
    background: linear-gradient(90deg, #fef3c7 0%, #fde68a 100%);
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(245,158,11,0.15);
}

.alert-icon {
    font-size: 28px;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.alert-content {
    flex: 1;
    font-size: 15px;
    color: #92400e;
    line-height: 1.6;
}

.alert-content strong {
    color: #b45309;
    margin-right: 8px;
}

.alert-btn {
    padding: 10px 24px;
    background: #f59e0b;
    color: #fff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s;
    text-decoration: none;
}

.alert-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

.list-toolbar {
    background: #fff;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.toolbar-left {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.list-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    position: relative;
    padding-left: 14px;
}

.list-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 2px;
}

.category-filter-wrapper .category-filter {
    margin-bottom: 0;
}

.list-content {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.list-content .article-card {
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    box-shadow: none;
}

.list-content .article-card:last-child {
    margin-bottom: 0;
}

.list-content .article-card .card-body h3 a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-content .article-card .card-body h3 a::before {
    content: '📋';
    font-size: 16px;
    flex-shrink: 0;
}

.list-pagination {
    margin-top: 32px;
}

.cta-section {
    margin-top: 48px;
}

.cta-card {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.cta-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.cta-info p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.cta-benefits li {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.cta-action {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.cta-btn-primary {
    display: block;
    padding: 14px 40px;
    background: #fff;
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    background: #f8fafc;
}

.cta-btn-phone {
    display: block;
    padding: 12px 32px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.cta-btn-phone:hover {
    background: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
    .page-banner {
        height: 220px;
        margin-top: 72px;
    }
    
    .page-title {
        font-size: 26px;
    }
    
    .notice-alert {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }
    
    .alert-btn {
        width: 100%;
        text-align: center;
    }
    
    .list-toolbar {
        padding: 16px;
    }
    
    .list-content {
        padding: 16px;
    }
    
    .cta-card {
        flex-direction: column;
        padding: 28px 20px;
        text-align: center;
        gap: 24px;
    }
    
    .cta-info h3 {
        font-size: 20px;
    }
    
    .cta-benefits {
        justify-content: center;
    }
    
    .cta-action {
        width: 100%;
    }
    
    .cta-btn-primary,
    .cta-btn-phone {
        width: 100%;
    }
}