/* Fullscreen overlay */
    .pop-up-form {
      display: none;
      justify-content: center;
      align-items: center;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.7);
      z-index: 9999;
    }

    .pop-up-form.active {
      display: flex;
    }

    /* Popup form window */
    .popWindow {
      background: #fff;
      width: 90%;
      max-width: 600px;
      padding: 30px;
      border-radius: 10px;
      position: relative;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
      animation: fadeInUp 0.4s ease;
    }

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

    .close-btn {
      position: absolute;
      top: 8px;
      right: 15px;
      font-size: 28px;
      cursor: pointer;
      color: #999;
      font-weight: bold;
    }

    .close-btn:hover {
      color: #333;
    }

    .subcsribe-text {
      font-size: 22px;
      text-align: center;
      text-transform: uppercase;
      color: #037ca2;
      margin-bottom: 25px;
      font-weight: 900;
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    label {
      font-weight: bold;
      color: #333;
    }

    input,
    textarea {
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      font-family: Arial, sans-serif;
    }

    textarea {
      resize: vertical;
      min-height: 100px;
    }

    .btn {
      background-color: #ffba00;
      border: none;
      color: #161613;
      padding: 12px 50px;
      border-radius: 4px;
      font-weight: 700;
      text-transform: uppercase;
      cursor: pointer;
      transition: 0.4s;
      align-self: center;
    }

    .btn:hover {
      background-color: #e6a700;
    }

    .thank_you_window {
      text-align: center;
    }

    .thank_you_title {
      color: #037ca2;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .thank_you_body {
      color: #333;
      font-size: 16px;
    }

    @media (max-width: 480px) {
      .popWindow {
        width: 90%;
        padding: 20px;
      }

      .subcsribe-text {
        font-size: 18px;
      }
    }