/* saas_7_chat_privacy.css */

/* Define CSS variables for consistency and easy updates */
:root {
    --brand-color: #4285F4;       /* Primary color for trust & calm */
    --text-color: #333;           /* Standard text color */
    --subtext-color: #555;        /* Secondary text color */
    --bg-color: #fff;             /* Container background */
    --container-max-width: 900px;
    --border-radius: 8px;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Global resets and styles */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: #f5f7fa; /* A light, modern background */
    line-height: 1.6;
  }
  
  /* Main container */
  .saas_7_chat_privacy-container {
    max-width: var(--container-max-width);
    margin: 40px auto;
    padding: 40px;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
  }
  
  /* Headings */
  h1, h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--brand-color);
    margin-bottom: 20px;
  }
  
  h1 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  /* Paragraphs */
  p {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-color);
  }
  
  /* Lists */
  ul {
    margin-left: 20px;
    padding-left: 10px;
  }
  
  ul li {
    margin-bottom: 10px;
  }
  
  /* Intro and Effective Date Sections */
  .saas_7_chat_privacy-intro {
    text-align: center;
    font-size: 18px;
    color: var(--subtext-color);
    margin-bottom: 40px;
  }
  
  .saas_7_chat_effective-date {
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--subtext-color);
  }

  /* Section divider spacing */
  .saas_7_chat_privacy-container hr {
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin: 20px 0 26px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .saas_7_chat_privacy-container {
      padding: 20px;
      margin: 20px;
    }
  
    h1 {
      font-size: 28px;
    }
  
    h2 {
      font-size: 20px;
    }
  
    p, ul li {
      font-size: 14px;
    }
  }
  
