/* static/css/cancellation_and_refund.css */

/* =============================================
   Cancellation & Refund page styles
   Consistent with 1200 px container and spacing
   ============================================= */

/* Make the page stretch full height */
.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* 
  Container: center content, cap at 1200px 
  Used for Cancellation & Refund text 
*/
.cancel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px; /* vertical + horizontal padding */
  box-sizing: border-box;
  background-color: #ffffff;
}

/* Section background stays white */
.cancel-section {
  background-color: #ffffff;
}

/* Main title (h1) */
.cancel-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #333333;
}

/* “Last updated” line */
.cancel-updated {
  font-size: 0.9rem;
  color: #666666;
  text-align: center;
  margin-bottom: 30px;
}

/* Statement about no cancellations/refunds */
.cancel-statement {
  font-size: 1rem;
  font-weight: 600;
  color: #444444;
  text-align: center;
  margin-bottom: 20px;
}

/* Additional paragraph text */
.cancel-info {
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 20px;
  text-align: center;
}

/* Link styling inside the info paragraph */
.cancel-info a {
  color: #0066cc;
  text-decoration: none;
}
.cancel-info a:hover {
  text-decoration: underline;
}

/* Footer push (so footer sits at bottom if content is short) */
.page-container > *:last-child {
  margin-top: auto;
}
