.section-contact {
  padding: 5rem 2rem;
  background: #f9fbfd;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-title {
  max-width: 800px;
  margin-bottom: 2rem;
}

.contact-title h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.contact-title p {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  color: #666;
}

.contact-form {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  font-family: 'Inter', sans-serif;
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-form button {
  background: #2196f3;
  color: white;
  border: none;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #1976d2;
}

.contact-info {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #444;
}
