.page-header {
            background: linear-gradient(135deg, #0A2540, #0C1E30);
            min-height: 40vh;
            padding-top: 120px;
            padding-bottom: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .gradient-text {
            background: linear-gradient(90deg, #20b2aa, #f6b93b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .mv-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            height: 100%;
            border-top: 5px solid #20b2aa;
        }
        .mv-card.vision {
            border-top-color: #f6b93b;
        }
        .mv-card-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .mv-card:not(.vision) .mv-card-icon { color: #20b2aa; }
        .mv-card.vision .mv-card-icon { color: #f6b93b; }
        .mv-card-title {
            font-weight: 700;
            margin-bottom: 1rem;
            color: #0A2540;
        }
        .mv-card-text {
            color: #6c757d;
            line-height: 1.7;
        }
        
        /* Timeline CSS */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: #20b2aa;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 2px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: white;
            border: 4px solid #f6b93b;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .right::after {
            left: -10px;
        }
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .timeline-date {
            color: #20b2aa;
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        @media screen and (max-width: 768px) {
            .timeline::after { left: 31px; }
            .timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
            .timeline-item::after { left: 21px; }
            .right { left: 0%; }
            .page-header {
                padding-top: 120px;
                padding-bottom: 2rem;
                min-height: auto;
            }
            .page-header h1 {
                font-size: 1.8rem;
            }
            .mv-card {
                margin-bottom: 20px;
            }
        }

        @media (max-width: 576px) {
            .page-header {
                padding-top: 100px;
            }
            .page-header h1 {
                font-size: 1.5rem;
            }
            .timeline-content {
                padding: 15px 20px;
            }
            .timeline-date {
                font-size: 1rem;
            }
        }

