/* Global styles */
:root {
    --primary-bg: #373e44;
    --text-color: #333;
    --link-color: #1a73e8;
    --header-height: 150px;
    --footer-height: 40px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Lato', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fbfbfb;
  }
  
  .container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Header styles */
  header {
    width: 100%;
  }
  
  .header-top {
    background-color: #fbfbfb;
    padding: 15px 30px;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .header-logo a {
    color: var(--primary-bg);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
  }
  
  .header-banner {
    background-color: var(--primary-bg);
    background-image: linear-gradient(135deg, #373e44 60%, #4a5259 100%);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: var(--header-height);
    position: relative;
    overflow: hidden;
  }
  
  .header-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://ext.same-assets.com/181627274/340833080.png');
    background-repeat: repeat;
    opacity: 0.05;
  }
  
  .header-banner h1 {
    font-size: 48px;
    font-weight: 300;
    z-index: 1;
    letter-spacing: 1px;
  }
  
  /* Content styles */
  .content {
    flex: 1;
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .privacy-policy {
    background-color: white;
    padding: 40px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  
  .intro-paragraph,
  .consent-paragraph {
    margin-bottom: 25px;
  }
  
  .consent-paragraph {
    font-weight: 500;
  }
  
  h2 {
    font-size: 20px;
    margin: 30px 0 15px;
    color: #444;
  }
  
  p {
    margin-bottom: 15px;
    font-size: 15px;
  }
  
  ol {
    margin: 15px 0 15px 25px;
  }
  
  li {
    margin-bottom: 10px;
  }
  
  .contact {
    margin-top: 30px;
    font-weight: 500;
  }
  
  /* Footer styles */
  footer {
    background-color: #f5f5f5;
    padding: 10px 20px;
    border-top: 1px solid #e0e0e0;
    height: var(--footer-height);
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    color: #727c82;
    font-size: 14px;
  }
  
  .footer-center, .footer-right {
    cursor: pointer;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .header-banner h1 {
      font-size: 38px;
    }
  
    .privacy-policy {
      padding: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .header-banner h1 {
      font-size: 30px;
    }
  
    .privacy-policy {
      padding: 15px;
    }
  
    .footer-content {
      flex-direction: column;
      align-items: center;
      gap: 5px;
    }
  }
  