*{
      box-sizing: border-box;
    }
    html, body {
      margin: 0;
      padding: 0;
      font-family: 'Inter', sans-serif;
      background: linear-gradient(to bottom right, #f7faff, #e8f1f9);
      color: #333;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 {
      margin: 0;
      line-height: 1.4;
    }
    section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
    }
    .hero {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      padding: 80px 20px;
      background: linear-gradient(120deg, #004080, #0078d4);
      color: white;
      gap: 2rem;
    }
    .hero .left, .hero .right {
      flex: 1 1 48%;
      padding: 20px;
    }
    .hero .left img {
      max-width: 100%;
      border-radius: 16px;
      box-shadow: 0 12px 40px rgba(0,0,0,0.2);
    }
    .hero .right h1 {
      font-size: clamp(1.8rem, 5vw, 2.6rem);
      font-weight: 700;
      margin-bottom: 20px;
    }
    .hero .right p {
      font-size: 1.2em;
      margin-bottom: 35px;
      opacity: 0.95;
    }
    form {
      max-width: 500px;
      margin: 0 auto;
    }
    form input, form select, form textarea, form button {
      width: 100%;
      padding: 16px;
      margin-bottom: 18px;
      border-radius: 10px;
      border: none;
      font-size: 1em;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
    }
    form input, form select, form textarea {
      background: #fff;
    }
    form button {
      background: #ffa726;
      color: white;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      transition: background 0.3s ease;
      cursor: pointer;
    }
    form button:hover {
      background: #fb8c00;
    }
    h3 {
      font-size: 1.8em;
      color: #003366;
      margin-bottom: 40px;
      text-align: center;
    }
    .advantage-box {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
    }
    .advantage {
      background: white;
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s ease;
    }
    .advantage:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    }
    .advantage img {
      height: 52px;
      margin-bottom: 16px;
    display: block;
    margin: 0 auto;
    }
    .testimonial {
      background: white;
      border-radius: 16px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
      padding: 50px 30px;
    }
    .testimonial img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin-bottom: 15px;
    }
    .testimonial p {
      font-style: italic;
      color: #555;
      font-size: 1.05em;
    }
    .logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px;
      background: #fff;
      border-radius: 16px;
      padding: 50px 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    }
    .logos img {
      height: 60px;
     /* filter: grayscale(1);
      opacity: 0.7;
      transition: all 0.3s;*/
    }
    .logos img:hover {
      filter: none;
      opacity: 1;
    }
    footer {
      background: #003366;
      color: white;
      text-align: center;
      font-size: 0.95em;
      padding: 50px 20px;
      border-top: 5px solid #ffa726;
    }
    @media (max-width: 768px) {
      section[style*="display: flex"] {
        flex-direction: column !important;
        text-align: center;
        padding: 40px 20px !important;
      }
      section[style*="display: flex"] > div {
        flex: 1 1 100% !important;
        padding: 10px !important;
      }
      .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
      }
      .hero .left, .hero .right {
        flex: 1 1 100%;
        padding: 10px;
      }
      .hero .right h1 {
        font-size: 2rem;
      }
      .hero .right p {
        font-size: 1rem;
      }
      .logos img {
        height: 50px;
      }
      section {
        padding: 60px 16px;
      }
      img {
        max-width: 100% !important;
   
      }
    }
    @media (max-width: 480px) {
      .hero .right form {
        padding: 0 10px;
      }
      .hero .right h1 {
        font-size: 1.6rem;
      }
      .hero .right p {
        font-size: 1rem;
      }
      form input,
      form select,
      form textarea,
      form button {
        padding: 12px;
        font-size: 1rem;
      }
      .hero .right {
        padding: 0 !important;
      }
      .hero {
        padding: 40px 10px !important;
      }
    }
     header {
      background: #ffffff;
      padding: 20px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      height:58px;
    }
    .logo span {
      font-size: 1.4rem;
      font-weight: 700;
      color: #004080;
    }
    
     .cta-header {
      background: #ffa726;
      color: white;
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s ease;
    }
    .cta-header:hover {
      background: #fb8c00;
    }
