.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/carousel1.jpg') center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.page-header h1 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.breadcrumb-custom {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb-custom li {
    font-size: 0.95rem;
    color: #eee;
}
.breadcrumb-custom li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumb-custom li a:hover {
    color: var(--primary-orange, #EE4832);
}
.breadcrumb-custom li::after {
    content: '\f105'; /* FontAwesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin: 0 10px;
    color: #aaa;
    font-size: 0.8rem;
}
.breadcrumb-custom li:last-child::after {
    content: '';
}

/* Filter tabs */
.news-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}
.news-tab-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    color: #495057;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}
.news-tab-btn:hover, .news-tab-btn.active {
    background-color: var(--primary-orange, #EE4832);
    color: #fff;
    border-color: var(--primary-orange, #EE4832);
}

/* Adjust section padding */
.page-content {
    padding: 60px 0 100px;
}

/* Pagination */
.pagination-custom {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}
.page-link {
    color: var(--primary-dark, #333);
    border-radius: 5px;
    margin: 0 5px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}
.page-link:hover {
    background-color: #f8f9fa;
    color: var(--primary-orange, #EE4832);
}
.page-item.active .page-link {
    background-color: var(--primary-orange, #EE4832);
    border-color: var(--primary-orange, #EE4832);
    color: #fff;
}

/* Tag colors */
.tag-activity { background-color: #E8F7EF; color: var(--primary-blue, #003366); }
.tag-plan { background-color: #E6F0FA; color: #0056b3; }
.tag-other { background-color: #F8F9FA; color: #6c757d; border: 1px solid #dee2e6; }