
        /* Global Styles */
        :root {
            --primary: #4e73df;
            --primary-dark: #3a56b0;
            --secondary: #f8f9fa;
            --dark: #212529;
            --light: #f8f9fa;
            --success: #1cc88a;
            --info: #36b9cc;
            --warning: #f6c23e;
            --danger: #e74a3b;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .section-title {
            font-weight: 700;
            position: relative;
            margin-bottom: 1rem;
        }

        .section-subtitle {
            color: #6c757d;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        /* Button Styles */
        .btn {
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            border-color: var(--primary-dark);
        }

        /* Navbar Styles */
        .navbar {
            padding: 0.5rem 1rem;
        }

        .navbar-brand img {
            max-height: 60px;
        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            color: #333 !important;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary) !important;
        }

        /* Page Header */
        .page-header {
            background-color: var(--primary);
            color: white;
            padding: 80px 0;
            position: relative;
        }

        .page-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(78, 115, 223, 0.9) 0%, rgba(58, 86, 176, 0.8) 100%);
            z-index: 1;
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .page-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
        }

        .page-header .breadcrumb-item, .page-header .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
        }

        .page-header .breadcrumb-item.active {
            color: #fff;
        }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.6);
        }

        /* Timeline Styles */
        .timeline {
            position: relative;
            padding: 0;
            list-style: none;
        }

        .timeline:before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 2px;
            margin-left: -1px;
            background-color: #e9ecef;
        }

        .timeline > li {
            position: relative;
            margin-bottom: 50px;
            min-height: 50px;
        }

        .timeline > li:before,
        .timeline > li:after {
            content: " ";
            display: table;
        }

        .timeline > li:after {
            clear: both;
        }

        .timeline > li .timeline-panel {
            float: left;
            position: relative;
            width: 46%;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
            background-color: #fff;
        }

        .timeline > li .timeline-panel:before {
            position: absolute;
            top: 26px;
            right: -15px;
            display: inline-block;
            border-top: 15px solid transparent;
            border-left: 15px solid #ccc;
            border-right: 0 solid #ccc;
            border-bottom: 15px solid transparent;
            content: " ";
        }

        .timeline > li .timeline-panel:after {
            position: absolute;
            top: 27px;
            right: -14px;
            display: inline-block;
            border-top: 14px solid transparent;
            border-left: 14px solid #fff;
            border-right: 0 solid #fff;
            border-bottom: 14px solid transparent;
            content: " ";
        }

        .timeline > li .timeline-badge {
            position: absolute;
            top: 16px;
            left: 50%;
            z-index: 100;
            width: 50px;
            height: 50px;
            margin-left: -25px;
            border-radius: 50%;
            text-align: center;
            font-size: 1.4em;
            line-height: 50px;
            color: #fff;
            background-color: var(--primary);
        }

        .timeline > li.timeline-inverted > .timeline-panel {
            float: right;
        }

        .timeline > li.timeline-inverted > .timeline-panel:before {
            border-left-width: 0;
            border-right-width: 15px;
            left: -15px;
            right: auto;
        }

        .timeline > li.timeline-inverted > .timeline-panel:after {
            border-left-width: 0;
            border-right-width: 14px;
            left: -14px;
            right: auto;
        }

        .timeline-heading h4 {
            margin-top: 0;
            color: inherit;
        }

        .timeline-heading h4.timeline-title {
            font-weight: 600;
        }

        .timeline-heading .text-muted {
            font-weight: 500;
            color: var(--primary) !important;
        }

        .timeline-body > p,
        .timeline-body > ul {
            margin-bottom: 0;
        }

        .timeline-body > p + p {
            margin-top: 5px;
        }

        .timeline-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        /* Milestone Card */
        .milestone-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background-color: #fff;
        }

        .milestone-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .milestone-header {
            background-color: var(--primary);
            color: white;
            padding: 15px 20px;
        }

        .milestone-year {
            font-size: 2rem;
            font-weight: 700;
            margin: 0;
        }

        .milestone-body {
            padding: 20px;
        }

        .milestone-title {
            font-weight: 600;
            margin-bottom: 10px;
        }

        /* Footer Styles */
        .footer {
            background-color: #1a1e25;
        }

        .footer-title {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: var(--primary);
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #adb5bd;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: #fff;
            padding-left: 5px;
        }

        .footer-divider {
            background-color: rgba(255,255,255,0.1);
        }

        .copyright {
            color: #adb5bd;
            font-size: 0.9rem;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background-color: var(--primary);
            color: #fff;
            margin: 0 5px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background-color: var(--primary-dark);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .page-header {
                padding: 60px 0;
            }
        }

        @media (max-width: 767.98px) {
            .page-header {
                padding: 50px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .timeline:before {
                left: 40px;
            }
            
            .timeline > li .timeline-panel {
                width: calc(100% - 90px);
                width: -moz-calc(100% - 90px);
                width: -webkit-calc(100% - 90px);
            }
            
            .timeline > li .timeline-badge {
                left: 15px;
                margin-left: 0;
                top: 16px;
            }
            
            .timeline > li .timeline-panel {
                float: right;
            }
            
            .timeline > li .timeline-panel:before {
                border-left-width: 0;
                border-right-width: 15px;
                left: -15px;
                right: auto;
            }
            
            .timeline > li .timeline-panel:after {
                border-left-width: 0;
                border-right-width: 14px;
                left: -14px;
                right: auto;
            }
        }

        @media (max-width: 575.98px) {
            .page-header {
                padding: 40px 0;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
        }
