
.contact-page {
  background-color: #fff0f6;
  min-height: 100vh;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-section {
  max-width: 600px;
  width: 100%;
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #ff69b4;
  margin-bottom: 1rem;
}

.contact-section p {
  color: #444;
  margin-bottom: 2rem;
}

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

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff69b4;
  outline: none;
}

.contact-form button {
  background-color: #ff69b4;
  color: #fff;
  border: none;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #e2569c;
}
.confirmation-message {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: #28a745; /* soft green */
  opacity: 0;
  transition: opacity 0.3s ease;
}

.confirmation-message.visible {
  opacity: 1;
}


footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}
