/* Page Header / Hero */
.page-header {
    background: var(--gradient-hero);
    padding: 4rem 0 3rem;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-custom .active {
    color: white;
}

/* Section Headers */
.section-header {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
}

.section-header:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent);
    display: block;
    margin-top: 0.6rem;
    border-radius: 3px;
}

.section-header-center {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.section-header-center:after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--accent);
    display: block;
    margin-top: 0.6rem;
    border-radius: 3px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards */
.card-simple {
    border: none;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: white;
    padding: 1.8rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.card-simple:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-md {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.icon-lg {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 3rem 0;
    margin: 2rem 0;
}

.stat-number-large {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
}

/* Leadership Team */
.leader-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
    text-align: center;
    padding: 1.5rem;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.leader-img {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.leader-img i {
    font-size: 3rem;
    color: white;
}

/* Accreditation Cards */
.accreditation-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: 0.3s;
}

.accreditation-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.accreditation-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-year {
    min-width: 80px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--accent);
}

.timeline-content {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
    flex: 1;
}

/* Footer */
footer {
    background: #0C1622;
    color: #9aa3b5;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-link {
    color: #9aa3b5;
    text-decoration: none;
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    transition: 0.2s;
}

.footer-link:hover {
    color: var(--accent-light);
}

.text-accent {
    color: var(--accent);
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .section-header {
        font-size: 1.6rem;
    }

    .stat-number-large {
        font-size: 1.8rem;
    }
}