/* static/css/terms_and_conditions.css */

/* =============================================
   Terms & Conditions page styles
   Matches the 1200px container and spacing used elsewhere
   ============================================= */

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

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

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

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

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

/* Paragraph text */
.terms-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 20px;
}

/* Bulleted list styling */
.terms-list {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444444;
}

/* Ensure each list item has adequate space */
.terms-list li {
  margin-bottom: 15px;
}

/* Links inside the terms, if any */
.terms-section a {
  color: #0066cc;
  text-decoration: none;
}
.terms-section a:hover {
  text-decoration: underline;
}

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