    :root {
      --deep-blue: #052b59;
      --gold: #efc864;
      --light-gold: #fff6e3;
      --white: #ffffff;
      --light-gray: #f5f6f8;
      --dark-gray: #333333;
    }

    * {
      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);
    }

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

    .terms-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: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

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

    .terms-hero p {
      font-size: 1.2rem;
      margin-bottom: 10px;
      opacity: 0.9;
    }

    .effective-date {
      font-size: 1.1rem;
      color: var(--gold);
      font-weight: 600;
    }

    /* TERMS CONTENT SECTION */
    .terms-content {
      max-width: 1300px;
      margin: 60px auto;
      padding: 0 20px;
    }

    .terms-section {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }

    .terms-section h2 {
      color: var(--deep-blue);
      font-size: 1.8rem;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--light-gold);
    }

    .terms-section h3 {
      color: var(--deep-blue);
      font-size: 1.4rem;
      margin: 25px 0 15px;
    }

    .terms-section p {
      margin-bottom: 15px;
      color: #555;
    }

    .terms-section ul {
      margin: 15px 0 15px 30px;
    }

    .terms-section li {
      margin-bottom: 10px;
      color: #555;
    }

    .highlight-box {
      background-color: var(--light-gold);
      border-left: 4px solid var(--gold);
      padding: 20px;
      margin: 20px 0;
      border-radius: 0 8px 8px 0;
    }

    /* FOOTER - Same as other pages */
    .site-footer {
      background: var(--deep-blue);
      color: var(--light-gold);
      padding: 4rem 2rem 2rem;
      font-family: 'Cairo', sans-serif;
      margin-top: 60px;
    }

    .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;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Header Mobile Styles */
  .site-header {
    height: 100px !important;
    padding: 12px 20px;
    position: fixed;
    background: transparent !important;
    position: absolute;
    box-shadow: none;
  }

  .header-left {
    gap: 5px;
  }

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

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

  .header-right {
    gap: 20px;
  }

  .btn-apply {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--deep-blue);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

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

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

  .main-nav ul li a {
    font-size: 1.1rem;
    padding: 10px 0;
    display: block;
    color: var(--light-gold);
  }

  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--light-gold);
    margin: 3px 0;
    transition: 0.3s;
  }

  /* Terms Hero Mobile */
  .terms-hero {
    padding: 100px 20px 40px; /* Extra top padding for fixed header */
  }

  .terms-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .terms-hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .effective-date {
    font-size: 1rem;
  }

  /* Terms Content Mobile */
  .terms-content {
    margin: 40px auto;
    padding: 0 15px;
  }

  .terms-section {
    padding: 30px 20px;
    margin-bottom: 25px;
    border-radius: 10px;
  }

  .terms-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .terms-section h3 {
    font-size: 1.2rem;
    margin: 20px 0 12px;
  }

  .terms-section p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .terms-section ul {
    margin: 12px 0 12px 20px;
  }

  .terms-section li {
    margin-bottom: 8px;
    font-size: 0.95rem;
  }

  .highlight-box {
    padding: 18px;
    margin: 18px 0;
    border-radius: 0 6px 6px 0;
  }

  .highlight-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 3rem 1rem 1.5rem;
    margin-top: 40px;
  }

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

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

  .footer-about p {
    margin: 0 auto;
    margin-top: -30px;
  }

  .footer-links h4 {
    margin-top: -1.8rem;
  }

  .footer-social {
    text-align: center;
    margin-top: 50px;
  }

  .footer-social a {
    display: inline-block;
    margin: 0 8px;
    font-size: 20px;
  }

  /* Footer Bottom Mobile */
  .footer-bottom {
    padding: 15px 10px;
    font-size: 0.8rem;
  }

  .footer-bottom p {
    line-height: 1.5;
  }
}

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

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

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

  .terms-hero {
    padding: 90px 15px 30px;
  }

  .terms-hero h1 {
    font-size: 1.8rem;
  }

  .terms-hero p {
    font-size: 1rem;
  }

  .effective-date {
    font-size: 0.95rem;
  }

  .terms-content {
    padding: 0 10px;
  }

  .terms-section {
    padding: 25px 15px;
  }

  .terms-section h2 {
    font-size: 1.3rem;
  }

  .terms-section h3 {
    font-size: 1.1rem;
  }

  .terms-section p {
    font-size: 0.92rem;
  }

  .terms-section li {
    font-size: 0.92rem;
  }

  .highlight-box {
    padding: 15px;
    margin: 15px 0;
  }

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

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

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

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

  .terms-hero h1 {
    font-size: 2.8rem;
  }

  .terms-content {
    max-width: 95%;
    margin: 50px auto;
  }

  .terms-section {
    padding: 35px 30px;
  }

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

/* Large Desktop Screens */
@media (min-width: 1400px) {
  .terms-content {
    max-width: 1400px;
  }
  
  .terms-section {
    padding: 50px 45px;
  }
}

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

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

/* Additional mobile optimizations for better readability */
@media (max-width: 768px) {
  .terms-section h2 {
    line-height: 1.3;
  }
  
  .terms-section h3 {
    line-height: 1.3;
  }
  
  .highlight-box p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}