/*FONTS*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*MAIN*/
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
:root {
      --primary-color: #9079FB;
      --secondary-color: #BFB6FF;
      --success-color: #C3FBCC;
      --text-dark: #2D2D2D;
      --bg-light: #FAFAFF;
      --border-color: #E2E0FF;
    }

    body {
      margin: 0;
      padding: 0;
      font-family: 'Inter','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: var(--bg-light);
    }

    .help-section {
      padding: 60px 20px;
      min-height: calc(100vh - 120px);
      display: flex;
      justify-content: center;
      align-items: center;
      color: var(--text-dark);
    }

    .help-section .container {
      background: #ffffff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(144, 121, 251, 0.08);
      max-width: 600px;
      width: 100%;
    }

    .help-section h2 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-dark);
      text-align: center;
    }

    .help-section p {
      font-size: 14px;
      color: #666;
      text-align: center;
      margin-bottom: 30px;
      line-height: 1.5;
    }

    .form-group {
      margin-bottom: 22px;
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--border-color);
      border-radius: 8px;
      font-size: 15px;
      color: var(--text-dark);
      background-color: #fff;
      transition: all 0.3s ease;
      outline: none;
      box-sizing: border-box;
      margin-top: 5px;
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .form-group textarea {
      resize: vertical;
    }

    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--primary-color);
      box-shadow: 0 0 0 4px rgba(144, 121, 251, 0.15);
    }

    .custom-file-upload {
    display: flex;
    align-items: center;
    padding: 12px;
    background-color: #FAFAFF;
    border: 2px dashed var(--secondary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 10px;
    }

    .custom-file-upload:hover {
    border-color: var(--primary-color);
    background-color: #F3F1FF;
    }

    .file-btn {
    margin-right: 15px;
    padding: 8px 18px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    }

    .file-btn:hover {
    background-color: #785df9;
    box-shadow: 0 4px 8px rgba(144, 121, 251, 0.2);
    }

    .file-text {
    font-size: 14px;
    color: #555;
    }

    .form-group small {
      margin-top: 6px;
      font-size: 12px;
      color: #777;
    }

    .h-captcha {
      margin: 25px 0;
      display: flex;
      justify-content: center;
    }

    .submit-btn {
      width: 100%;
      background-color: var(--primary-color);
      color: #ffffff;
      border: none;
      padding: 14px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(144, 121, 251, 0.2);
    }

    .submit-btn:hover {
      background-color: #785df9;
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(144, 121, 251, 0.3);
    }

    .submit-btn:active {
      transform: translateY(1px);
    }

    .submit-btn:disabled {
      background-color: #a496f7;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .info-box {
    margin-top: 12px;
    padding: 12px 16px;
    background-color: #F3F1FF;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px 8px 8px 4px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
    }

    .info-box strong {
    color: var(--primary-color);
    }

    #formResult {
      margin-top: 20px;
      padding: 12px;
      border-radius: 8px;
      font-size: 14px;
      text-align: center;
      font-weight: 600;
      display: none;
    }

    #formResult.success {
      display: block;
      background-color: var(--success-color);
      color: #1e4624;
      border: 1px solid #a1e2ac;
    }

    #formResult.error {
      display: block;
      background-color: #ffe3e3;
      color: #7a1c1c;
      border: 1px solid #f9bcbc;
    }
/*STOPKA*/
.footer {
  width: 100%;
  color: #fff;
  background-color: #3101a3;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  overflow: hidden;
  padding: 48px 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 100px;
  padding: 0 72px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo img {
  height: 54px;
  display: block;
  margin-left: -28px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links h4 {
  font-family: "Inter";
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 0 8px 0;
}

.footer-links a {
  font-family: "Inter";
  font-weight: 400;
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-top: 4px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social h4 {
  font-family: "Inter";
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.1s;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}
/* RESPONSYWNOŚĆ DLA STOPKI */
@media (max-width: 900px) {
  .footer {
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    padding: 44px 0;
  }

  .footer-content {
    margin: 0 auto;
    padding: 0 24px;
    gap: 24px;
  }

  .footer-links {
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .footer-content {
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }

  .footer-logo img {
    height: 70px;
  }

  .footer-links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }

  .footer-links > div {
    width: 100%;
    max-width: 360px;
  }

  .footer-links h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }

  .footer-links a {
    font-size: 18px;
  }

  .footer-social {
    width: 100%;
    max-width: 360px;
  }

  .social-icons {
    justify-content: center;
    gap: 14px;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 0;
  }

  .footer-logo img {
    height: 65px;
  }

  .footer-links {
    gap: 18px;
  }

  .footer-links h4 {
    font-size: 16px;
    letter-spacing: 0.2px;
  }

  .footer-links a {
    font-size: 16px;
  }

  .footer-social h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
    border-width: 1px;
  }
}

@media (max-width: 360px) {
  .footer-content {
    padding: 0 16px;
  }
  .social-icons {
    gap: 12px;
  }
  .social-icons a {
    width: 36px;
    height: 36px;
  }
}