form {
  background: #fdfdfd;
  padding: 25px;
  margin-bottom: 40px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  max-width: 800px;
}

form label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
}

form input[type="text"],
form input[type="url"],
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

form input[type="text"]:focus,
form input[type="url"]:focus,
form select:focus,
form textarea:focus {
  border-color: #0073aa;
  outline: none;
}

form input[type="submit"] {
  margin-top: 20px;
  padding: 10px 24px;
  background: #0073aa;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

form input[type="submit"]:hover {
  background: #005f8d;
}

.handseo-result {
  background: #fff;
  border: 1px solid #c8e1ff;
  padding: 25px;
  margin: 30px 0;
  border-left: 5px solid #0073aa;
  font-family: Georgia, serif;
  max-width: 800px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
}

.handseo-result h3 {
  margin-top: 0;
  color: #0073aa;
  font-size: 22px;
}

.handseo-result pre {
  background: #f7f9fa;
  padding: 18px;
  overflow: auto;
  white-space: pre-wrap;
  border: 1px solid #d9e2e9;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  form, .handseo-result {
    padding: 15px;
  }
  form input[type="submit"] {
    width: 100%;
  }
}
