.contact {
    max-width: 600px;
    margin: 80px auto;
    padding: 60px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  .contact h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: white;
    text-align: center;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  label {
    font-size: 14px;
    color: #ccc;
  }
  
  input,
  textarea {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-size: 15px;
    resize: none;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
  }
  
  button {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: rgba(255, 255, 255, 0.25);
  }

  
@media screen and (max-width: 768px) {
  .contact {
    margin: 76px 20px;
    padding: 30px 20px;
    gap: 20px;
  }

  .contact h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  input,
  textarea {
    font-size: 14px;
    padding: 10px;
  }

  button {
    padding: 12px 16px;
    font-size: 15px;
  }
}
