.contact-form {
      max-width: 600px;
      margin: 50px auto;
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

.contact-form h1 {
      text-align: center;
      color: #2d3436;
    }

.contact-form p {
      text-align: center;
      color: #636e72;
      margin-bottom: 30px;
    }

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

.contact-form label {
      margin-bottom: 5px;
      font-weight: bold;
      color: #2d3436;
    }

.contact-form input,
.contact-form textarea {
      padding: 10px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
    }

.contact-form textarea {
      resize: vertical;
      height: 120px;
    }

.contact-form button {
      padding: 12px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

.contact-form button:hover {
      background-color: #0056b3;
    }

.contact-form .small-form-row {
    text-align: center;
    margin-bottom: 10px;
}