.contact-wrapper {
  background-color: #fafafa;
  padding: 4rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.contact-hero {
  text-align: center;
  margin-bottom: 2rem;
  background: linear-gradient(90deg, #3e2d44 0%, #af7bb6 50%, #3e2d44 100%);   
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-hero p {
  color: white;
  font-size: 1rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-form {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 1rem;
}


.contact-form button {
  background-color: #7a4eab;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #7a4eab;
}

.contact-info {
  flex: 1;
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-text {
  margin-top: 1rem;
}

.info-text p {
  margin-bottom: 0.5rem;
  color:#4b1d68;
  font-size: 0.95rem;
}

.info-text a {
  color: #4b1d68;
  text-decoration: none;
}

.info-text a:hover {
  text-decoration: underline;
}
