    :root {
      --primary-color: #1a472a;
      --secondary-color: #2e8b57;
      --accent-color: #d4af37;
      --light-color: #f8f9fa;
      --dark-color: #212529;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #333;
      line-height: 1.6;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-family: 'Roboto', sans-serif;
      font-weight: 700;
    }

    .abaisanza-logo {
      border-radius: 5px;
    }

    .navbar {
      background-color: var(--primary-color);
      padding: 0.8rem 0;
    }

    .navbar-brand {
      font-weight: 700;
      color: white !important;
      font-size: 1.5rem;
    }

    .nav-link {
      color: rgba(255, 255, 255, 0.85) !important;
      font-weight: 500;
      margin: 0 0.5rem;
      transition: all 0.3s ease;
    }

    .nav-link:hover {
      color: white !important;
      transform: translateY(-2px);
    }

    .hero-section {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(131, 125, 114, 0.6));
      background-size: cover;
      background-position: center;
      color: white;
      padding: 6rem 0;
      margin-top: 76px;
    }

    .section-title {
      position: relative;
      margin-bottom: 2rem;
      padding-bottom: 0.5rem;
      text-align: center;
    }

    .section-title:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background-color: var(--accent-color);
    }

    /* =====  BANNER FLEX  ===== */
    .banner {
      display: flex;
      flex-wrap: wrap;
      /* allows stack on small screens */
      align-items: center;
      gap: 1.5rem;
      padding: 1.8rem;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    }

    .banner>div {
      flex: 1 1 320px;
      /* both columns grow, base 320px */
      min-width: 0;
      /* stops overflow */
    }

    /* ----  image  ---- */
    .banner img.bunyoro-banner {
      width: 100%;
      height: auto;
      max-height: 285px;
      /* keeps it reasonable on large screens */
      object-fit: cover;
      border-radius: 6px;
    }

    /* ----  text  ---- */
    .banner h3 {
      color: var(--primary-color, #1a472a);
      margin-bottom: .5rem;
    }

    /* audio style */
    audio::-webkit-media-controls-panel {
      background: linear-gradient(to right, #c6e0cc, #9dd4ab);
    }

    .audio-container:has(audio) {
      text-align: center;
      padding: 15px;
      background: linear-gradient(135deg, #c2c7ce 0%, #b5c3da 100%);
      border-radius: 15px;
      display: inline-block;
    }

    .banner p {
      margin-bottom: 1rem;
      line-height: 1.6;
    }

    /* ----  phone tweak  ---- */
    @media (max-width: 576px) {
      .banner {
        padding: 1rem;
        gap: 1rem;
      }

      .banner img.bunyoro-banner {
        max-height: 200px;
        /* smaller on phones */
      }
    }

    .card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .btn-primary {
      background-color: var(--primary-color);
      border-color: var(--primary-color);
      padding: 0.6rem 1.5rem;
      font-weight: 500;
    }

    .btn-primary:hover {
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
    }

    .feature-icon {
      font-size: 2.5rem;
      color: var(--accent-color);
      margin-bottom: 1rem;
    }

    footer {
      background-color: var(--dark-color);
      color: white;
      padding: 3rem 0 1rem;
    }

    .social-links a {
      color: white;
      font-size: 1.5rem;
      margin-right: 1rem;
      transition: color 0.3s ease;
    }

    .social-links a:hover {
      color: var(--accent-color);
    }

    .clan-totem {
      background-color: #f8f9fa;
      padding: 3rem 0;
    }

    .executive-card {
      text-align: center;
      padding: 1.5rem;
    }

    .executive-img {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      object-fit: cover;
      margin: 0 auto 1rem;
      border: 3px solid var(--accent-color);
    }

    .gallery-img {
      height: 250px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-img {
      transform: scale(1.05);
    }

    .timeline {
      position: relative;
      padding: 2rem 0;
    }

    .timeline:before {
      content: '';
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 2px;
      height: 100%;
      background-color: var(--accent-color);
    }

    .timeline-item {
      margin-bottom: 3rem;
      position: relative;
      width: 50%;
      padding: 0 2rem;
      box-sizing: border-box;
    }

    .timeline-item:nth-child(odd) {
      left: 0;
      padding-right: 3rem;
      text-align: right;
    }

    .timeline-item:nth-child(even) {
      left: 50%;
      padding-left: 3rem;
    }

    .timeline-dot {
      position: absolute;
      top: 1rem;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: var(--accent-color);
    }

    .timeline-item:nth-child(odd) .timeline-dot {
      right: -10px;
    }

    .timeline-item:nth-child(even) .timeline-dot {
      left: -10px;
    }