/* Extracted Inline Styles */
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background-color: #ffffff;
      font-family: 'Open Sans', sans-serif;
      color: #1a1a1a;
      line-height: 1.6;
      overflow-x: hidden;
      position: relative;
    }

    /* Content Section */
    .content-section {
      position: relative;
      width: 100%;
      min-height: 550px;
      overflow: visible;
      display: flex;
      align-items: center;
      padding: 0 0;
    }

    /* Banner Section */
    .banner-section {
      position: relative;
      width: 100%;
      min-height: 300px;
      background: linear-gradient(135deg, #0a2540 0%, #1a4d7a 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 50px 0;
    }

    .banner-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.8;
    }

    .content-section-content-container {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
      z-index: 10;
      display: block;
    }

    /* Content Container inside Banner */
    .banner-content-container {
      position: relative;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      width: 100%;
      z-index: 10;
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 60px;
      align-items: start;
    }

    /* Left Content */
    .content-left {
      background: transparent;
      padding: 0;
      border-radius: 0;
      box-shadow: none;
      animation: slideUp 0.8s ease-out;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .content-left h1 {
      font-family: 'Open Sans', sans-serif;
      font-size: 44px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 24px;
      line-height: 1.2;
      letter-spacing: normal;
    }

    .content-section-content-left {
      margin-right: 480px;
    }

    .content-section-content-left p {
      font-size: 17px;
      line-height: 1.7;
      color: #000;
      margin-bottom: 20px;
    }

    .content-left p {
      font-size: 17px;
      line-height: 1.7;
      color: #e8e8e8;
      margin-bottom: 20px;
    }

    .content-left p strong {
      color: #ffffff;
      font-weight: 600;
    }

    .content-left ul {
      list-style: none;
      padding: 0;
      margin: 24px 0;
    }

    .content-left ul li {
      font-size: 16px;
      color: #e8e8e8;
      margin-bottom: 14px;
      padding-left: 30px;
      position: relative;
      line-height: 1.6;
    }

    .content-left ul li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 12px;
      height: 12px;
      background: linear-gradient(135deg, #E17523 0%, #f39c12 100%);
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(225, 117, 35, 0.3);
    }

    /* Form Overlay */
    .form-overlay {
      background: #ffffff;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
      border-radius: 20px;
      padding: 45px;
      position: absolute;
      animation: slideUp 0.8s ease-out 0.2s backwards;
      border: 1px solid rgba(10, 37, 64, 0.08);
      width: 420px;
      top: 0;
      right: 40px;
      transform: translateY(-50%);
    }

    .form-overlay::before {
      content: "";
      position: absolute;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      border-radius: 20px;
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }

    .form-overlay h3 {
      font-family: 'Open Sans', sans-serif;
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 28px;
      color: #0a2540;
      letter-spacing: normal;
    }

    .form-container {
      display: flex;
      flex-direction: column;
    }

    .form-container input[type="text"],
    .form-container input[type="email"],
    .form-container textarea {
      width: 100%;
      padding: 16px 15px;
      margin-bottom: 16px;
      border-radius: 40px;
      border: 1px solid #68737d29;
      background: #f8f9f9;
      font: 16px / 1 'Open Sans', sans-serif;
      color: #000;
      outline: none;
      box-shadow: none;
      height: 50px;
      box-sizing: border-box;
    }

    .form-container input[type="text"]::placeholder,
    .form-container input[type="email"]::placeholder,
    .form-container textarea::placeholder {
      color: #94a3b8;
    }

    .form-container input[type="text"]:focus,
    .form-container input[type="email"]:focus,
    .form-container textarea:focus {
      border-color: #E17523;
      background: #ffffff;
      box-shadow: none;
    }

    .form-container textarea {
      min-height: 100px;
      height: auto;
      resize: none;
      border-radius: 20px;
      font-family: 'Open Sans', sans-serif;
    }

    .form-column-1 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 0;
    }

    .form-column-1 input {
      margin-bottom: 16px;
    }

    .form-container .checkbox-container {
      display: flex;
      align-items: center;
      margin: 10px 5px;
      font: 16px / 22px 'Open Sans', sans-serif;
      color: #000;
      position: relative;
    }

    .form-container input[type="checkbox"] {
      margin-right: 10px;
      top: 5px;
      position: absolute;
      width: 14px;
      height: auto;
      box-shadow: none;
    }

    .form-container label.consent {
      margin-left: 28px;
    }

    .form-container .privacy-policy {
      color: #000;
      text-decoration: underline;
    }

    .form-container .privacy-policy:hover {
      text-decoration: underline;
    }

    .form-container .submit-btn {
      background-color: #e17523;
      border: 1px solid #e17523;
      border-radius: 50px;
      color: #fff;
      font-size: 18px;
      font-weight: 400;
      font-family: 'Open Sans', sans-serif;
      padding: 14px 0;
      cursor: pointer;
      width: 100%;
      max-width: 200px;
      margin-top: 15px;
      align-self: center;
      transition: background-color 0.3s ease;
    }

    .form-container .submit-btn:hover {
      background-color: #e66c00;
    }

    .hp-field {
      position: absolute;
      left: -9999px;
      visibility: hidden;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .banner-content-container {
        grid-template-columns: 1fr 380px;
        gap: 40px;
      }

      .content-left h1 {
        font-size: 38px;
      }

      .form-overlay {
        padding: 35px;
      }
    }

    @media (max-width: 992px) {
      .banner-section {
        min-height: auto;
        padding: 60px 0;
      }

      .banner-content-container {
        padding: 0 30px;
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .content-left h1 {
        font-size: 34px;
      }

      .content-section-content-left {
        margin-right: 0;
      }

      .form-overlay {
        width: 90%;
        max-width: 500px;
        right: 50%;
        transform: translateX(50%) translateY(-50%);
      }
    }

    @media (max-width: 768px) {
      .banner-section {
        padding: 40px 0;
        min-height: 350px;
      }

      .banner-image {
        height: 100%;
        object-fit: cover;
        object-position: center;
      }

      .banner-content-container {
        padding: 0 20px;
      }

      .content-left h1 {
        font-size: 36px;
        margin-bottom: 18px;
      }

      .content-left p {
        font-size: 16px;
        margin-bottom: 16px;
      }

      .content-left ul li {
        font-size: 15px;
        margin-bottom: 12px;
      }

      .content-section-content-left {
        margin-right: 0;
        margin-top: 30px;
      }

      .form-overlay {
        position: relative;
        width: 100%;
        top: auto;
        right: auto;
        transform: none;
        padding: 30px 25px;
        margin-top: 40px;
        margin-bottom: 30px;
      }

      .form-overlay h3 {
        font-size: 24px;
        margin-bottom: 22px;
      }

      .form-column-1 {
        grid-template-columns: 1fr;
        gap: 0;
      }

      .form-container input[type="text"],
      .form-container input[type="email"],
      .form-container textarea {
        padding: 14px 18px;
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .banner-section {
        padding: 30px 0;
        min-height: 200px;
      }

      .content-left h1 {
        font-size: 34px;
      }

      .content-left p {
        font-size: 15px;
      }

      .form-overlay {
        padding: 25px 20px;
        margin-bottom: 30px;
      }

      .content-section-content-left {
        margin-top: 30px;
      }
    }
