body {
      margin: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #121212;
      color: #f0f0f0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      flex-direction: column;
      text-align: center;
      padding: 2rem;
    }

    h1 {
      font-size: 2rem;
      margin-bottom: 1rem;
      color: #ffcc70;
    }

    p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: #cccccc;
    }

    form {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 400px;
    }

    input, textarea, button {
      background-color: #1e1e1e;
      border: 1px solid #333;
      color: #f0f0f0;
      padding: 0.8rem;
      margin-bottom: 1rem;
      border-radius: 6px;
      font-size: 1rem;
      transition: border 0.3s ease;
    }

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

    button {
      background-color: #ffcc70;
      color: #121212;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

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

    .footer {
      font-size: 0.8rem;
      margin-top: 2rem;
      color: #555;
    }