/* Styles for static informational pages (Privacy Policy, About Us, Terms & Conditions) */

/* Make sure the page uses flex layout so the footer stays at the bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Main content section */
.static-section {
  flex: 1;
  background-color: #f7f5fc;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
}

/* Container for the policy/about/terms content */
.page-container {
  width: 100%;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 1.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  color: #462885;
  line-height: 1.6;
}

.page-container h2 {
  font-family: 'Fredoka One', cursive;
  font-size: 2rem;
  color: #a779d6;
  margin-bottom: 1.5rem;
}

.page-container h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  color: #462885;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.page-container p {
  margin-bottom: 1rem;
  color: #462885;
  font-size: 0.95rem;

}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 5px;
  margin-bottom: 15px;
  background-color: white;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #a779d6;
  outline: none;
  box-shadow: 0 0 0 2px rgba(167, 121, 214, 0.3);
}

.form-textarea {
  height: 150px;
  resize: vertical;
}

.form-error {
  color: red;
  font-size: 0.9rem;
  margin-top: -10px;
  margin-bottom: 10px;
}
