/* ---------- GLOBAL ---------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      color: #222;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      transition: 0.3s;
    }

    h1, h3, h4 {
      margin-bottom: 10px;
    }

    /* ---------- HEADER ---------- */
    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 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;
    }

    /* ---------- CTA HERO ---------- */
    body .cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    padding: 10px;
    text-align: center;
    background-image: url("https://i.ibb.co/gFVw1XQn/cta.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

    .cta h1 {
      font-size: 2rem;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .cta p {
      font-size: 1.1rem;
      max-width: 620px;
      margin: 0 auto 25px;
    }

.cta button {
  display: inline-block;
  background: #007bbf;
  color: white;
  padding: 12px 60px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s;
  cursor: pointer;
}

.cta button:hover {
  background: #005a87;
}

    /* ---------- STEPS ---------- */
    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 60px 10%;
      background: whitesmoke;
    }

    .step {
      background: #005a87;
      color: white;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      transition: 0.3s;
      box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .step:hover {
      transform: translateY(-5px);
    }

    .step i {
      font-size: 40px;
      margin-bottom: 15px;
    }

    /* ---------- CTA2 (TEXT + IMAGE) ---------- */
    .cta2 {
    display: flex;
    align-items: center;
    justify-content: center;
    height: max-content;
    padding-top: 30px;
    padding-bottom: 30px;
    width: 70vw;
    align-self: center;
    justify-self: center;
}

.cta2 .text {
    padding: 40px;
    text-align: left;
    width: 35vw;
}

.text h1 {
    font-weight: 700;
    color: #005a87;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.text p {
    font-size: 16px;
}

.cta2 img {
    max-width: 450px;
    width: 100%;
    border-radius: 12px;
}

    /* ---------- LAST CTA ---------- */
    .last-cta {
      background: whitesmoke;
      padding: 60px 10%;
      text-align: center;
    }

    .last-cta-row {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 25px;
      margin-top: 30px;
    }

    .last-box img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 15px;
    }

    .last-box h4 {
      color: #005a87;
      margin-bottom: 10px;
    }

    /* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {

    p, h3 {
        font-size: 15px;
        font-weight: 100;
    }
      .pcmenu { 
        display: none; 
       }
      .bars { 
        display: block; 
        color: #005a87; 
        font-size: 28px; 
       }
       .cta2 {
        flex-direction: column;
        width: 90vw;
       }
       .cta2 .text {
        width: 90vw;
        text-align: center;
        line-height: 1;
        padding: 5px;
       }
       .text h1 {
        font-size: 36px;
       }
       .text p {
        line-height: 1.5;
       }
       #cta22 {
        flex-direction: column-reverse;
       }
    }