
    body {
      margin: 0;
      background-color: #000;
      padding-bottom: 100px;
      font-family: 'Lato', sans-serif;
    }

    .section-header {
      text-align: center;
      padding: 40px 0;
      font: 300 60px 'Oswald', sans-serif;
      color: #fff;
      letter-spacing: 6px;
    }

    .contact-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 600px;
      margin: 0 auto;
      padding: 20px;
    }

    .form-horizontal {
      width: 100%;
      max-width: 500px;
    }

    .form-control,
    textarea {
      width: 100%;
      background: #000;
      color: #fff;
      border: 1px solid #444;
      padding: 10px;
      margin-bottom: 10px;
    }

    .send-button {
      width: 100%;
      height: 44px;
      background: #111;
      border: none;
      cursor: pointer;
      color: #fff;
      letter-spacing: 2px;
    }

    .send-button:hover {
      background: #fff;
      color: #000;
    }

    .status {
      margin-top: 12px;
      font-size: 14px;
    }

    .status.success { color: #7CFF7C; }
    .status.error { color: #FF7C7C; }

    @media (max-width: 850px) {
      .contact-wrapper {
        flex-direction: column;
        align-items: center;
      }
    }
