    :root {
      --deep-blue: #052b59;
      --gold: #efc864;
      --light-gold: #fff6e3;
      --white: #ffffff;
      --light-gray: #f5f6f8;
      --dark-gray: #333333;
      --success: #28a745;
      --info: #17a2b8;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Cairo', sans-serif;
      background-color: var(--light-gray);
      color: var(--dark-gray);
      line-height: 1.6;
    }

    /* HEADER - Same as other pages */
    .site-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 60px;
      background-color: var(--deep-blue);
      color: var(--light-gold);
      width: 100%;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .header-left {
      display: flex;
      align-items: center;
    }

    .header-left .logo img {
      height: 50px;
      width: auto;
    }

    .header-left .logo:first-child img {
      height: 80px;
      width: auto;
      margin-top: 5px;
    }

    .header-left .logo:last-child img {
      height: 90px;
      width: auto;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 50px;
    }

    .btn-apply {
      background-color: var(--gold);
      color: var(--deep-blue);
      padding: 8px 24px;
      border-radius: 8px;
      font-family: 'Cairo', sans-serif;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s;
    }

    .btn-apply:hover {
      transform: scale(1.08);
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }

    .main-nav ul {
      display: flex;
      list-style: none;
      gap: 35px;
    }

    .main-nav ul li a {
      color: var(--light-gold);
      text-decoration: none;
      font-family: 'Cairo', sans-serif;
      font-weight: 500;
      transition: color 0.2s;
    }

    .main-nav ul li a:hover {
      color: var(--gold);
      transform: translateY(-2px);
      transition: 0.2s;
    }

    .main-nav ul li a.active {
      color: var(--gold);
      border-bottom: 2px solid var(--gold);
    }

    /* ABOUT HERO SECTION */
    .about-hero {
      background: linear-gradient(135deg, var(--deep-blue) 0%, #0a4a8f 100%);
      padding: 50px 20px;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .about-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(239,200,100,0.1)"/></svg>');
      background-size: cover;
      opacity: 0.3;
    }

    .hero-content {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .about-hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: var(--gold);
      text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }

    .about-hero p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0.9;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    /* MISSION SECTION */
    .mission-section {
      padding: 80px 20px;
      background: var(--white);
    }

    .mission-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .mission-content h2 {
      font-size: 2.5rem;
      color: var(--deep-blue);
      margin-bottom: 30px;
      position: relative;
    }

    .mission-content h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 4px;
      background: var(--gold);
    }

    .mission-content p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      color: #555;
    }

    .mission-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-top: 40px;
    }

    .stat-item {
      text-align: center;
      padding: 20px;
      background: var(--light-gold);
      border-radius: 10px;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--deep-blue);
      display: block;
    }

    .stat-label {
      font-size: 1rem;
      color: var(--dark-gray);
      font-weight: 600;
    }

    .mission-image {
      position: relative;
    }

    .mission-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .image-overlay {
      position: absolute;
      bottom: -20px;
      right: -20px;
      background: var(--gold);
      color: var(--deep-blue);
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* VALUES SECTION */
    .values-section {
      padding: 80px 20px;
      background: var(--light-gray);
    }

    .values-container {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .section-header {
      margin-bottom: 60px;
    }

    .section-header h2 {
      font-size: 2.5rem;
      color: var(--deep-blue);
      margin-bottom: 15px;
    }

    .section-header p {
      font-size: 1.1rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }

    .value-card {
      background: var(--white);
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-10px);
    }

    .value-icon {
      width: 80px;
      height: 80px;
      background: var(--light-gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
    }

    .value-icon i {
      font-size: 2rem;
      color: var(--deep-blue);
    }

    .value-card h3 {
      font-size: 1.4rem;
      color: var(--deep-blue);
      margin-bottom: 15px;
    }

    .value-card p {
      color: #666;
      line-height: 1.6;
    }

    /* TEAM SECTION */
.team-section {
  padding: 100px 20px;
  background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--deep-blue);
  margin-bottom: 10px;
  font-weight: 800;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 60px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.team-member {
  text-align: center;
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.member-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--gold);
  box-shadow: 0 0 20px rgba(239, 200, 100, 0.4);
  transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
  transform: scale(1.05);
}

.member-name {
  font-size: 1.4rem;
  color: var(--deep-blue);
  margin-bottom: 8px;
  font-weight: 700;
}

.member-role {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.member-bio {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}


    /* CTA SECTION */
    .cta-section {
      background: linear-gradient(135deg, var(--deep-blue) 0%, #0a4a8f 100%);
      padding: 80px 20px;
      text-align: center;
      color: var(--white);
    }

    .cta-content {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-content h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--gold);
    }

    .cta-content p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .cta-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--deep-blue);
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s;
      font-size: 1rem;
    }

    .btn-primary:hover {
      background: #e6b84c;
    }

    .btn-secondary {
      background: transparent;
      color: var(--gold);
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      border: 2px solid var(--gold);
      transition: all 0.3s;
      font-size: 1rem;
    }

    .btn-secondary:hover {
      background: var(--gold);
      color: var(--deep-blue);
    }

    /* FOOTER */
    .site-footer {
      background: var(--deep-blue);
      color: var(--light-gold);
      padding: 4rem 2rem 2rem;
      font-family: 'Cairo', sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      justify-content: space-between;
    }

    .footer-about {
      flex: 1 1 300px;
    }

    .footer-about .footer-logo img {
      height: 320px;
      margin-top: -60px;
      margin-bottom: -60px;
      margin-left: -40px;
    }

    .footer-about p {
      font-size: 13px;
      line-height: 1.6;
      max-width: 400px;
      text-align: center;
      margin-left: -85px;
      margin-top: -15px;
    }

    .footer-links, .footer-contact {
      flex: 1 1 200px;
    }

    .footer-links h4,
    .footer-contact h4 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
    }

    .footer-links ul li {
      margin-bottom: 0.5rem;
    }

    .footer-links ul li a {
      color: white;
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links ul li a:hover {
      color: var(--gold);
    }

    .footer-contact p {
      margin-bottom: 0.6rem;
      font-size: 0.95rem;
      color: white;
    }

    .footer-contact i {
      margin-right: 8px;
      color: var(--gold);
    }

    .footer-social {
      margin-top: 1rem;
    }

    .footer-social a {
      display: inline-block;
      margin-right: 0.8rem;
      color: white;
      font-size: 1rem;
      transition: color 0.2s;
    }

    .footer-social a:hover {
      color: var(--gold);
    }

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
  padding: 15px 10px;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

    /* ANIMATIONS */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .fade-in-up {
      animation: fadeInUp 0.8s ease forwards;
    }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Fix white gap at top */
  body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  /* Header Mobile - Fixed with background */
  .site-header {
    height: 70px;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--deep-blue) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .header-left {
    margin-top: 5px;
    gap: 8px;
  }

  .header-left .logo:first-child img {
    height: 40px;
  }

  .header-left .logo:last-child img {
    height: 45px;
  }

  .header-right {
    gap: 15px;
  }

  .btn-apply {
    display: none;
  }

  /* Compact Mobile Navigation */
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: var(--deep-blue);
    padding: 70px 20px 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 12px;
  }

  .main-nav ul li a {
    font-size: 1rem;
    padding: 8px 0;
  }

  .mobile-apply-btn {
    display: block !important;
    background: var(--gold);
    color: var(--deep-blue);
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    margin-top: 15px;
    font-size: 0.9rem;
  }

  /* Compact Menu Toggle */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--light-gold);
    transition: 0.3s;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

    .main-nav ul li a.active {
      border-bottom: none;
    }

  /* About Hero Mobile */
  .about-hero {
    padding: 85px 15px 25px;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 1.7rem;
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  /* Mission Section Mobile */
  .mission-section {
    padding: 50px 15px;
  }

  .mission-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mission-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .mission-content h2::after {
    width: 60px;
    height: 3px;
    bottom: -8px;
  }

  .mission-content p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }

  .mission-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
  }

  .stat-item {
    padding: 15px;
    border-radius: 8px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .image-overlay {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
  }

  /* Values Section Mobile */
  .values-section {
    padding: 50px 15px;
  }

  .section-header {
    margin-bottom: 35px;
  }

  .section-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 25px 20px;
    border-radius: 10px;
  }

  .value-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .value-icon i {
    font-size: 1.5rem;
  }

  .value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .value-card p {
    font-size: 0.85rem;
  }

  /* Team Section Mobile */
  .team-section {
    padding: 50px 15px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.9rem;
    margin-bottom: 35px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .team-member {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .member-photo {
    width: 120px;
    height: 120px;
    margin-bottom: 15px;
  }

  .member-name {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .member-role {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .member-bio {
    font-size: 0.85rem;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 50px 15px;
  }

  .cta-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .cta-content p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.9rem;
    border-radius: 6px;
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }

  /* Compact Footer */
  .site-footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-about .footer-logo img {
    height: 300px;
    margin: -40px auto -30px;
  }

  .footer-about p {
    margin: 0 auto;
    margin-top: -35px;
    font-size: 0.8rem;
  }

  .footer-links {
    font-size: 1rem;
    margin-top: -2rem;
    margin-bottom: 1.5rem;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .footer-links ul li {
    margin-bottom: 0.3rem;
  }

  .footer-links ul li a {
    font-size: 0.85rem;
  }

  .footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .footer-social {
    margin-top: 3rem;
  }

  .footer-social a {
    margin: 0 6px;
    font-size: 1rem;
  }

  .footer-bottom {
    margin-top: 1.5rem;
    padding: 10px;
    font-size: 0.8rem;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .site-header {
    padding: 8px 12px;
  }

  .header-left .logo:first-child img {
    height: 35px;
  }

  .header-left .logo:last-child img {
    height: 40px;
  }

  .about-hero {
    padding: 80px 12px 20px;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content p {
    font-size: 0.85rem;
  }

  .mission-section,
  .values-section,
  .team-section,
  .cta-section {
    padding: 40px 12px;
  }

  .mission-content h2,
  .section-header h2,
  .cta-content h2 {
    font-size: 1.4rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .value-card {
    padding: 20px 15px;
  }

  .team-member {
    padding: 20px 15px;
  }

  .member-photo {
    width: 100px;
    height: 100px;
  }

  .footer-about .footer-logo img {
    height: 280px;
    margin: -35px auto -25px;
  }

  .footer-about p {
    margin-top: -20px;
    font-size: 0.75rem;
  }

  .footer-social a {
    margin: 0 5px;
    font-size: 0.9rem;
  }
}

/* Tablet Devices */
@media (min-width: 769px) and (max-width: 1024px) {
  .site-header {
    padding: 12px 25px;
  }

  .mission-container {
    max-width: 95%;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-container {
    padding: 0 20px;
  }
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
}