    body {
      font-family: 'Titillium Web', sans-serif;
      color: #1a365d;
      background-color: #f8f9fa;
    }

    .hero-header {
      position: relative;
      height: 400px;
      background-color: #002444;
      /* background: url('../images/') center center / cover no-repeat; */
      display: flex;
      align-items: flex-end; /* text comes at the bottom */
    }

    .hero-overlay {
      width: 100%;
      padding: 2rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 80%);
      /* Only applies to bottom 20% roughly */
    }

    .hero-texts {
      color: #fff;
      text-align: left;
      max-width: 1000px;
      margin: 0 auto;
    }

    .hero-texts h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    .hero-texts p {
      font-size: 1.2rem;
      color: #f1f1f1;
    }

    /* .section:first-of-type {
      padding-top: 90px; 
    } */

    /* .partner-card {
      background-color: white;
      border: 1px solid #dee2e6;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .partner-card:hover {
      transform: translateY(-5px);
    }

    .partner-card img {
      max-width: 100%;
      height: 80px;
      object-fit: contain;
      margin-bottom: 10px;
    } */

    .partners-section {
      padding: 20px 20px;
      background-color: #f9f9f9; /* optional */
    }

    .partners-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .partners-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .partner-card {
      background: none;
      padding: 0;
      text-align: center;
      border: none;
      /* border-radius: 12px; */
      box-shadow: none;
    }

    .partner-card img {
      max-width: 70%;
      height: auto;
      display: inline-block;
    }

    .partner-card p {
      margin-top: 8px;
      font-size: 14px;
      color: #333;
    }

    .partner-card:hover img {
      transform: scale(1.05);
      transition: transform 0.3s ease;
    }

    @media (max-width: 900px) {
      .partners-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .partner-card img {
        max-width: 60%;    
        display: block;   
        margin: 0 auto;    
      }

      .partners-section {
      padding: 10px 20px;
      }
    }

    .working-together-section {
      padding: 60px 20px;
      background-color: #ffffff; 
      text-align: justify;
      
    }

    .working-together-container {
      max-width: 1050px;
      margin: 0 auto;
    }

    .working-heading {
      font-size: 2rem;
      margin-bottom: 20px;
      text-align: center;
      white-space: nowrap;
    }

    .working-description {
      font-size: 1.2rem;
      color: #555;
      /* line-height: 1.6; */
    }

    .cta-section {
      /* background-color: #2b6cb0; */
      background-color: #0c406d;
      background-image: url("https://www.transparenttextures.com/patterns/asfalt-light.png");
      color: white;
      padding: 60px 20px;
      text-align: center;
    }

    .cta-container {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta-section h3 {
      font-size: 2.5rem;
      /* margin-bottom: 20px; */
    }

    .cta-section p {
      font-size: 1.15rem;
      margin-bottom: 10px;
    }

    /* .cta-section a.cta-btn {
      background-color: white;
      color: #2b6cb0;
      font-weight: 600;
      border-radius: 25px;
      padding: 20px 25px;
      text-decoration: none;
    } */

    .cta-link {
      display: inline-flex;
      align-items: center;
      font-weight: bold;
      color: #ffffff; 
      font-size: 1.2rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .cta-link:hover {
      color: #f4b400; 
    }

    .cta-link span {
      margin-left: 8px;
      transition: transform 0.3s ease;
    }

    .cta-link:hover span {
      transform: translateX(5px);
    }

    @media (max-width: 600px) {
      .working-heading {
        font-size: 1.7rem;
      }

      .working-description {
        font-size: 1.1rem;
      }

      .working-together-section {
      padding: 10px 20px;
      }
    }

    /* Override Bootstrap's default list padding from reboot.scss */
    ol, ul {
      padding-left: 0;
    }