:root {
    --theme-color: #207694;
    --theme-color2: #684df4;
    --title-color: #141d38;
    --body-color: #737887;
    --smoke-color: #f5f5f5;
    --smoke-color2: #e2e8fa;
    --black-color: #000000;
    --white-color: #ffffff;
    --title-font: "Barlow", sans-serif;
    --body-font: "Roboto", sans-serif;
  }
  
  body {
    font-family: var(--body-font);
    color: var(--body-color);
    line-height: 1.8;
    margin: 0;
    background: var(--smoke-color);
  }
  
  header.privacy-header {
    position: relative;
    background: var(--theme-color2);
    color: var(--white-color);
    text-align: center;
    padding: 60px 20px;
  }
  
  header.privacy-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  
  header.privacy-header .content {
    position: relative;
    z-index: 2;
  }
  
  header.privacy-header h1 {
    font-family: var(--title-font);
    font-size: 3rem;
    margin: 0;
  }
  
  header.privacy-header p {
    font-size: 1.2rem;
    margin: 10px 0 0;
  }
  
  main.privacy-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  }
  
  .policy-section {
    background: #F5F5F5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .policy-section h2 {
    font-family: var(--title-font);
    color: #207694;
    margin-bottom: 10px;
  }
  
  .policy-section h3 {
    font-family: var(--title-font);
    color:#207694;
    margin-bottom: 8px;
    font-size: 20px;
  }
  
  .policy-section p {
    font-size: 1rem;
    color: var(--body-color);
  }
  
  .policy-section ul {
    margin: 10px 0;
    padding: 0 20px;
  }
  
  .policy-section ul li {
    list-style: disc;
    margin-bottom: 5px;
  }
  
  a {
    color: var(--title-color);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  