:root {
    --tiffany-blue: #0ABAB5;
    --deep-charcoal: #2C3E50;
    --warm-white: #FEFEFE;
    --african-gold: #D4AF37;
    --copper-tone: #B87333;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FEFEFE 0%, #F8F9FA 100%);
  }
  
  .btn-primary {
    background: var(--tiffany-blue);
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(10, 186, 181, 0.3);
  }
  .btn-primary:hover {
    background: #089A95;
    box-shadow: 0 8px 24px rgba(10, 186, 181, 0.4);
  }
  
  .team-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
  }
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  }
  
  .nav-link {
    position: relative;
    transition: color 0.3s ease;
  }
  .nav-link:hover {
    color: var(--tiffany-blue);
  }
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--tiffany-blue);
  }
  
  .sticky-nav {
    backdrop-filter: blur(10px);
    background: rgba(254, 254, 254, 0.95);
  }
  
  .fade-in {
    opacity: 0;
  }
  .slide-up {
    opacity: 0;
    transform: translateY(30px);
  }
  
  .value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--tiffany-blue);
  }
  .value-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  
  .timeline-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
  }
  .timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--tiffany-blue);
    border-radius: 50%;
  }
  .timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1.5rem;
    width: 2px;
    height: calc(100% + 1rem);
    background: #e5e7eb;
  }
  .timeline-item:last-child::after {
    display: none;
  }