/* terms-conditions-styles.css */

/* Main container for the Terms & Conditions page */
.terms-conditions {
    padding: 100px 0;
    background-color: var(--light-gray);
  }
  
  /* Ensure consistent container sizing */
  .terms-conditions .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header section within the page */
  .policy-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .policy-header h1 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
  }
  
  .policy-header .effective-date {
    font-size: 0.9rem;
    color: var(--dark-gray);
  }
  
  /* Content area styling */
  .policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .policy-section {
    margin-bottom: 40px;
  }
  
  .policy-section h2 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
  }
  
  .policy-section p {
    font-size: 1rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
  }
  
  /* Lists within policy sections */
  .policy-section ul {
    list-style: disc;
    margin-left: 20px;
    color: var(--dark-gray);
  }
  
  .policy-section ul li {
    margin-bottom: 10px;
  }
  
  /* Styling for address elements */
  address {
    font-style: normal;
    line-height: 1.6;
    color: var(--dark-gray);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .policy-header h1 {
      font-size: 2rem;
    }
    
    .policy-section h2 {
      font-size: 1.5rem;
    }
    
    .policy-content {
      padding: 0 10px;
    }
  }