/* Legacy Page CSS - Professional Unified */
:root {
    --primary-color: #002147;
    --accent-color: #F2A900;
    --text-dark: #333333;
    --bg-light: #F8F9FA;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
}

/* Page Header (Common) */
.page-header {
    background: linear-gradient(rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.8)), url('../img/carousel-1.jpg'), no-repeat center center;
    background-size: cover;
}

.page-header .breadcrumb-item a {
    color: var(--accent-color) !important;
}

.page-header .breadcrumb-item.active {
    color: white !important;
}

/* Legacy Specific Content */
.legacy-section {
    padding: 80px 0;
}

.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.legacy-card {
    background: #fff;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color);
    transition: 0.3s;
}

.legacy-card:hover {
    transform: translateY(-5px);
    border-bottom-color: var(--accent-color);
}

.timeline-item {
    border-left: 2px solid var(--accent-color);
    padding-left: 30px;
    padding-bottom: 40px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
}

.year {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.bg-cream {
    background-color: var(--bg-light);
}

.legacy-cta {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.legacy-cta h2 { color: white; }

.btn-legacy {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 30px;
    border-radius: 2px;
}

.btn-legacy:hover {
    background: white;
    color: var(--primary-color);
}

