:root {
    --primary-color: #F5C74D; /* Orange accent color */
    --secondary-color: #1F2833; /* Darker, more modern background */
    --light-color: #F4F4F4; /* Light background color */
    --text-color: #fff; 
    --font-family: 'Montserrat', sans-serif; /* Modern & clean font */
    --container-width: 1140px; /* Responsive container width */
  }
  
  body {
    font-family: var(--font-family);
    margin: 0;
    line-height: 1.6;
    color: var(--text-color); /* Text color on dark background */
    background-color: var(--primary-color); /* Apply background to entire body */
  }
  
  .container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  /* Header */
  header {
    background-color: var(--secondary-color); 
    color: var(--text-color);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    height: 60px;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
  }
  
  nav li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  nav li a:hover {
    color: var(--primary-color);
  }
  
  /* Terms and Conditions Styling */
  .terms-container {
    padding: 80px 0; 
    color: #000000af; /* Ensure text is white on dark background */
  }
  
  .terms-container h1 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center; /* Center heading for visual impact */
  }
  
  .terms-container p {
    margin-bottom: 2rem;
    font-size: 1.15rem;
    line-height: 1.7;
  }
  
  /* Optional: Add a subtle gradient for visual interest */
  body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.05));
    opacity: 0.05;
  }