    /* Reset defaults */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: linear-gradient(135deg, #232526, #414345);
      color: #333;
    }

    /* Fixed header */
    header {
      background: #fd0094;
      color: #fff;
      text-align: center;
      padding: 1rem;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      z-index: 1000;
    }

    header h2 {
      font-size: 1.6rem;
    }

    /* Form wrapper */
    .form-wrapper {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      min-height: 100vh;
      padding: 100px 1rem 2rem; /* push down below header */
    }

    /* Form styling */
    form {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 500px;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #444;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="tel"],
    textarea {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1.2rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    input:focus,
    textarea:focus {
      border-color: #fd0094;
      outline: none;
    }

    input[type="submit"] {
      background: #fd0094;
      color: #fff;
      border: none;
      padding: 0.9rem 1.5rem;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
      width: 100%;
    }

    input[type="submit"]:hover {
      background: #000;
    }

    /* Responsive tweaks */
    @media (max-width: 600px) {
      header h2 {
        font-size: 1.3rem;
      }

      form {
        padding: 1.2rem;
        border-radius: 8px;
      }

      input[type="text"],
      input[type="email"],
      input[type="url"],
      input[type="tel"],
      textarea {
        font-size: 0.95rem;
        padding: 0.6rem;
      }

      input[type="submit"] {
        font-size: 0.95rem;
        padding: 0.7rem;
      }
    }
    
    .success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 1rem;
  line-height: 1.6rem;
  margin-bottom: 1rem;
  margin-right: 2rem;
  margin-left: 2rem;
margin-top: 7rem;
  border-radius: 8px;
}

.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  padding: 1rem;
line-height: 1.6rem;
  margin-bottom: 1rem;
  margin-top: 7rem;
  margin-right: 2rem;
  margin-left: 2rem;
  border-radius: 8px;
}

.cf-turnstile {
      margin-top: 1rem;
      margin-bottom: 1rem;

}


footer {
  background: #fd0094;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

footer a {
  color: #fff;
  text-decoration: underline;
}

footer a:hover {
  color: #ffd6f0;
}

footer {
  margin-top: 100px;
}

