body {
      font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
      color: #1f3a44;
      background-color: #f9fcfd;
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.8rem;
      color: #1e3c4f !important;
    }
    .section-title {
      font-size: 2.4rem;
      font-weight: 700;
      position: relative;
      display: inline-block;
      margin-bottom: 2rem;
    }
    .section-title:after {
      content: '';
      display: block;
      width: 70px;
      height: 4px;
      background: #d98c4a;
      border-radius: 4px;
      margin-top: 10px;
    }
    .timeline {
      position: relative;
      padding: 2rem 0;
    }
    .timeline::before {
      content: '';
      position: absolute;
      top: 0;
      left: 20px;
      width: 4px;
      height: 100%;
      background: #e0eef5;
      border-radius: 4px;
    }
    .timeline-item {
      position: relative;
      padding-left: 60px;
      margin-bottom: 3rem;
    }
    .timeline-year {
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: #2b5c6f;
      border: 4px solid #d98c4a;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 0.9rem;
      z-index: 2;
      box-shadow: 0 0 0 4px white;
    }
    .timeline-card {
      background: white;
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 12px 28px rgba(0,30,40,0.04);
      border: 1px solid #eef4f7;
      transition: 0.2s;
    }
    .timeline-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 35px rgba(43,92,111,0.12);
    }
    .timeline-icon {
      width: 60px;
      height: 60px;
      background: #e7f0f5;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #2b5c6f;
      margin-right: 1.2rem;
      flex-shrink: 0;
    }
    .milestone-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #1e3c4f;
      margin-bottom: 0.3rem;
    }
    .milestone-desc {
      color: #2f4a55;
      line-height: 1.6;
    }
    .stats-box {
      background: white;
      border-radius: 2rem;
      padding: 2.5rem;
      box-shadow: 0 15px 30px rgba(0,30,40,0.05);
      margin-top: 2rem;
    }
    .stats-number {
      font-size: 2.2rem;
      font-weight: 800;
      color: #1e3c4f;
      line-height: 1.2;
    }
    .breadcrumb {
      background: transparent;
      padding: 0.5rem 0;
    }
    .breadcrumb-item a {
      color: #2b5c6f;
      text-decoration: none;
    }
    .btn-cta {
      background: #d98c4a;
      color: white;
      border-radius: 50px;
      padding: 0.8rem 2.5rem;
      font-weight: 600;
      border: none;
      transition: 0.3s;
    }
    .btn-cta:hover {
      background: #c57633;
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(217,140,74,0.2);
    }
    .footer-link {
      color: #b6ccd9;
      text-decoration: none;
    }
    .footer-link:hover {
      color: white;
    }