.contact-title {
  text-align: center;
  color: #7a1f63;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.contact-info p {
  margin: 8px 0;
}

.contact-info i {
  color: #7a1f63;
  margin-right: 8px;
}

.contact-email a {
  color: #5b1b52;          
  text-decoration: underline;
  font-weight: 500;
}

.contact-email a:hover {
  opacity: 0.8;
}

/* Form Card */
.contact-form-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-card h2 {
  text-align: center;
  color: #7a1f63;
  margin-bottom: 25px;
}

form label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #7a1f63;
}
.required {
  color: #f60d0d;
  font-weight: bold;
}

form button {
  display: block;
  margin: 0 auto;
  background: #7a1f63;
  color: white;
  padding: 12px 40px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

form button:hover {
  opacity: 0.9;
}
