.h-87 {
    height: 87%;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(15, 42, 68, 0.94), rgba(10, 30, 48, 0.9)), url('https://images.unsplash.com/photo-1552566626-52f8b828add9?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center 40%;
    padding: 140px 0 80px;
    margin-top: 76px;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

.breadcrumb-custom a {
    color: var(--accent);
    text-decoration: none;
}

.breadcrumb-custom a:hover {
    text-decoration: underline;
}

.text-span {
    color: var(--primary);
}

/* Section headers */
.bg-gold {
    background-color: var(--gold);
}

.bg-charcoal {
    background-color: var(--charcoal);
}

.bg-ivory {
    background-color: var(--ivory);
}

.text-gold {
    color: var(--gold);
}

.text-charcoal {
    color: var(--charcoal);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.gold-line {
    width: 25%;
    height: 3px;
    background: var(--gold);
    margin: 0.5rem 0;
}

.mission-card,
.vision-card,
.core-value-card {
    transition: all 0.25s ease;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.pillar-box {
    background: white;
    border-left: 4px solid var(--gold);
    transition: 0.2s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.pillar-box:hover {
    transform: translateX(6px);
    background: var(--ivory);
}

@media (max-width: 768px) {
    .h-87 {
        height: 100%;
    }

}