.page-title {
  text-align: center;
  font-size: 2rem;
  color: #c6538c;
  margin-top: 2rem;
}

.contact-container {
  background: #fff;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

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

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

.contact-form button {
  background-color: #c6538c;
  color: white;
  border: none;
  padding: 0.75rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

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

.contact-message {
  max-width: 600px;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.contact-message.success {
  background-color: #e0ffe6;
  color: #2e7d32;
  border: 1px solid #9be5a5;
}

.contact-message.error {
  background-color: #ffe0e0;
  color: #a30000;
  border: 1px solid #f5a5a5;
}

.themed-message {
  background-color: #ffeef7;
  color: #4c144a;
  border: 2px dashed #c6538c;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  max-width: 600px;
  margin: 2rem auto;
  font-family: 'Fredoka', sans-serif;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: opacity 1s ease;
}

.themed-message h2 {
  margin-top: 0;
  font-size: 1.8rem;
}

.themed-message p {
  font-size: 1rem;
  margin-bottom: 0;
}