 <style>
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background: #ffffff;
      color: #222;
    }
    header {
      background-color: #1f4ed8;
      color: white;
      text-align: center;
      padding: 40px 20px;
    }
    header h1 {
      margin-bottom: 10px;
      font-size: 2em;
    }
    .cta-button {
      background-color: white;
      color: #1f4ed8;
      border: 2px solid #1f4ed8;
      padding: 10px 20px;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      display: inline-block;
    }
    .section {
      padding: 40px 20px;
      text-align: center;
    }
    .section h2 {
      margin-bottom: 20px;
      font-size: 1.5em;
    }
    .icons {
      display: flex;
      justify-content: center;
      gap: 30px;
      flex-wrap: wrap;
    }
    .icon-box {
      max-width: 120px;
    }
    .icon-box img {
      max-width: 100%;
      height: auto;
    }
    .services-box {
      background: #e0e7ff;
      margin: 0 auto;
      max-width: 400px;
      border-radius: 10px;
      padding: 20px;
      text-align: left;
    }
    .services-box ul {
      list-style-type: disc;
      padding-left: 20px;
    }
    .form-section {
      background: #f9f9f9;
      padding: 40px 20px;
    }
    .form-section form {
      max-width: 400px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .form-section input, 
    .form-section select, 
    .form-section button {
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-size: 16px;
    }
    .form-section button {
      background-color: #1f4ed8;
      color: white;
      border: none;
      cursor: pointer;
    }
    footer {
      background-color: #1f4ed8;
      color: white;
      text-align: center;
      padding: 20px;
    }

    /* Responsive Design for Mobile Devices */
    @media (max-width: 600px) {
      header h1 {
        font-size: 1.5em;
      }
      .cta-button {
        padding: 8px 16px;
        font-size: 14px;
      }
      .section {
        padding: 20px 10px;
      }
      .icons {
        gap: 15px;
      }
      .icon-box {
        max-width: 90px;
      }
      .services-box,
      .form-section form {
        width: 100%;
      }
    }
  </style>
