/* Styles for the Contact page */
body {
    font-family: Arial, sans-serif;
  }
  
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    text-align: center;
  }
  
  h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 50px;
  }
  
  p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 50px;
  }
  
  form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    margin: 20px;
    max-width: 400px;
    width: 100%;
  }
  
  .form-group label {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  input[type="text"],
  input[type="email"],
  textarea {
    font-size: 18px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-bottom: 20px;
  }
  
  textarea {
    height: 200px;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease-in-out;
    margin-top: 20px;
    border: none;
    cursor: pointer;
  }
  
  .btn:hover {
    background-color: #666;
  }