    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 10%;
      background: white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    header a {
        text-decoration: none;
    }

    header h1 {
      color: #005a87;
      font-size: 1.6rem;
    }

    .pcmenu {
      display: flex;
      gap: 25px;
    }

    .pcmenu a {
      color: #005a87;
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .pcmenu a:hover {
      color: #007bbd;
    }

    .bars {
      display: none;
      cursor: pointer;
    }

    /* ---------- MOBILE MENU ---------- */
    #mobile-menu {
      display: none;
      flex-direction: column;
      background: #005a87;
    }

    #mobile-menu a {
      color: white;
      padding: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    #mobile-menu a:hover {
      background: #007bbd;
    }

    body {
      background: #fff;
      color: #222;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 40px 0;
    }

    /* Section layout */
    .section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 60px;
      flex-wrap: wrap;
    }

    .section img {
      width: 100%;
      max-width: 500px;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .text {
      flex: 1;
      min-width: 280px;
    }

    .text h2 {
      font-size: 2rem;
      margin-bottom: 15px;
      font-weight: bold;
    }

    .text p {
      margin-bottom: 15px;
      color: #555;
    }

    .highlight {
      background: #005f73;
      color: white;
      padding: 15px 20px;
      border-radius: 6px;
      font-weight: bold;
      margin-top: 15px;
      display: inline-block;
    }

    /* Services Icons */
    .clients {
      text-align: center;
      padding: 40px 20px;
      border-top: 1px solid #eee;
    }

    .clients h3 {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }

    .icons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
    }

    .icon-box {
      text-align: center;
      max-width: 200px;
    }

    .icon-box img {
      width: 50px;
      margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .pcmenu { 
        display: none; 
       }

      .bars { 
        display: block; 
        color: #005a87; 
        font-size: 28px; 
       }

      .section {
        flex-direction: column;
        text-align: center;
      }

      .text {
        text-align: center;
      }

      .text h2 {
        font-size: 1.6rem;
      }

      .highlight {
        display: block;
        margin: 20px auto 0;
      }
    }