
/* =========================
   GLOBAL STYLES
   ========================= */

 body {
      font-family: Arial, sans-serif;
      background-color: #f0f8ff;
      margin: 0;
      padding: 20px;
      line-height: 1.6;
      text-align: center;
   }


 h2 {
      color: #4682b4;
      margin-top: 30px;
    }


 a {
      color: #1e90ff;
      text-decoration: none;
    }

 a:hover { text-decoration: underline; }


 .content {
      max-width: 75ch;
      margin: 1em auto;
      padding: 2em;
      background: #fff;
      border: 1px solid #ccc;
      text-align: left;
      font-size: 17px;
      line-height: 1.8;
    }



/* =========================
   HEADER
   ========================= */

 .site-header {
      background-color: #2e8b57;
      color: black;
      padding: 10px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
   }

 .site-header h1 {
      flex: 1;
      text-align: center;
      margin: 0;
      font-family: 'Jomhuria', sans-serif;
      font-size: 6.9em;
      letter-spacing: 5px;
   }

 .header-logo {
      height: 89px;
      width: auto;
      margin: 0 10px;
   }


@media (max-width: 640px) {
      .site-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
        padding: 10px 12px;
        gap: 8px;
      }
      .site-header .header-logo.right { display: none; }
      .site-header .header-logo.left {
        height: 89px;
        margin: 0 auto;
      }
      .site-header h1 {
        text-align: center;
        font-size: 1.6em;
        margin: 0;
      }
    }




/* =========================
   NAVIGATION
   ========================= */

.top-nav {
     max-width: 960px;
     margin: 14px auto 0;
     display: flex;
     gap: 12px;
     justify-content: center;
     flex-wrap: wrap;
   }

.nav-pill {
     display: inline-block;
     padding: 8px 12px;
     border: 1px solid #ddd;
     border-radius: 999px;
     background: #f9f9f9;
     font-size: 14px;
   }

.nav-pill.active {
     background: #2e8b57;
     color: white;
     border-color: #2e8b57;
   }

.nav-pill:hover {
     background: #eeeeee;
   }




/* =========================
   FOOTER
   ========================= */


 footer {
      text-align: center;
      margin-top: 40px;
      padding: 20px;
      background-color: #e0e0e0;
      font-size: 11px;
    }


.logo1 {
      padding: 10px 0;
      display: block;
      margin: 0 auto;
      max-width: 100%;
      height: auto;
      max-height: 180px;
    }


