body {
    background-color: #0a0a0a;
    color: white;
    font-family: "Helvetica Neue", sans-serif;
    padding: 60px 20px;
  }

  .contact-container {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 0.8s ease-out forwards;
  }

  @keyframes fadeSlideIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }

  p.description {
    font-size: 1.1em;
    color: #ccc;
    margin-bottom: 2em;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 1.2em;
  }

  label {
    font-weight: 500;
    margin-bottom: 0.3em;
  }

  input, textarea {
    background-color: #111;
    border: 1px solid #333;
    color: white;
    font-size: 1em;
    padding: 0.8em;
    border-radius: 6px;
    width: 100%;
  }

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

  button {
    background-color: #c56244;
    color: white;
    font-weight: 500;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    align-self: flex-start;
    transition: background 0.2s ease;
  }

  button:hover {
    background-color: #a94b30;
  }