.popup-overlay-custom {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.6);
      z-index: 9999;
      justify-content: center;
      align-items: center;
      z-index: 9999999999;
    }

    .popup-container-custom {
      width: 90%;
      max-width: 450px;
      background: #fff;
      padding: 25px;
      border-radius: 10px;
      position: relative;
      box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    }

    .popup-close-custom {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #333;
    }

    .popup-header-custom {
      text-align: center;
      margin-bottom: 20px;
    }

    .popup-header-custom h3 {
      color: #2a6496;
      margin-bottom: 8px;
    }

    .form-row-custom {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
    }

    .form-col-custom {
      flex: 1;
    }

    .form-group-custom {
      margin-bottom: 15px;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-weight: 500;
      color: #495057;
    }

    .input-with-icon {
      position: relative;
    }

    .input-with-icon input,
    .input-with-icon select,
    .input-with-icon textarea {
      width: 100%;
      padding: 10px 15px 10px 35px;
      font-size: 14px;
      border-radius: 5px;
      border: 1px solid #ccc;
      outline: none;
    }

    .input-with-icon textarea {
      padding-left: 35px;
      resize: vertical;
      min-height: 80px;
    }

    .input-icon {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: #2a6496;
    }

    .textarea-icon {
      top: 15px;
      transform: none;
    }

    .submit-btn-custom {
      width: 100%;
      padding: 12px;
      background-color: #2a6496;
      color: #fff;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .submit-btn-custom:hover {
      background-color: #1e4b75;
    }

    @media (max-width: 480px) {
      .popup-container-custom {
        width: 95%;
        padding: 20px;
      }
      .form-row-custom {
        flex-direction: row;
        gap: 10px;
      }
    }