/* style/terms-conditions.css */

:root {
  --primary-color: #26A9E0; /* Main brand color */
  --secondary-color: #FFFFFF; /* Auxiliary color */
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f9f9f9;
  --bg-dark: #202020; /* A slightly darker background for contrast sections */
  --button-login-color: #EA7C07; /* Specific color for login */
}

/* Base styles for the page content */
.page-terms-conditions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--bg-light); /* Assuming shared.css sets a light background */
}

.page-terms-conditions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Hero Section */
.page-terms-conditions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #30B9F0 100%); /* Blue gradient */
  color: var(--text-light); /* White text for dark background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}