/*contect*/
body {
    background-color: #ffffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
  }

  .contact-container {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 480px;
  }

  h1 {
    text-align: center;
    color: #222222;
    margin-bottom: 8px;
  }

  p.subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 30px;
    font-size: 14px;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  label {
    font-size: 14px;
    color: #333333;
    margin-bottom: 6px;
    margin-top: 14px;
  }

  input,
  textarea {
    padding: 10px 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
  }

  input:focus,
  textarea:focus {
    border-color: #4a90e2;
  }

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

  button {
    margin-top: 24px;
    padding: 12px;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  button:hover {
    background-color: #3b7dc4;
  }

  .info {
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: #888888;
  }