  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: #333;
      display: flex;
      flex-direction: column;
      align-items: center;

  }

  .header {
      width: 100%;
      background-color: #fff;
  }

  .container {
      width: 1400px;
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 2em;
      font-weight: 500;
      color: #091b4e;
  }

  .logo img {
      width: 90px;
      padding: 17px 0;
  }

  .nav {
      display: flex;
      gap: 50px;
      font-size: 22px;
      font-weight: 500;
  }

  .nav a {
      text-decoration: none;
      color: #091b4e;
      transition: color 0.3s;
  }

  .nav a:hover {
      color: #2737e5;
  }

  .menu-icon {
      display: none;
      font-size: 1.5em;
      cursor: pointer;
  }

  .content-container {
      max-width: 1430px;

      padding: 20px;
      font-size: 20px;
      color: #091b4e;
      line-height: 1.6;
  }

  /* Style for the main title */
  .title {
      text-align: center;
      font-size: 35px;
      padding-bottom: 50px;
      color: #091b4e;
  }

  /* Style for section headers */


  /* Additional styling for h3 (sub-header) */
  h3 {
      margin-top: 20px;
  }

  /* Basic styling for paragraphs and lists */
  p {
      margin: 10px 0;
  }

  ul {
      list-style-type: disc;
      padding-left: 20px;
  }

  .footer {
      width: 100%;
      background-color: #f2f2f7;
      padding: 20px 0;
      color: #091b4e;
      font-family: Arial, sans-serif;
  }

  .footer-content {
      display: flex;
      flex-direction: column;
      align-items: center;

      text-align: center;
  }

  .footer-nav {
      display: flex;
      gap: 50px;
      font-weight: 600;
      padding: 60px 0 33px 0;
      font-size: 21px;
  }

  .footer-nav a {
      color: #091b4e;
      text-decoration: none;
      transition: color 0.3s;
  }

  .footer-nav a:hover {
      color: #2737e5;
  }

  .footer-logo {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 1.9em;
      color: #091b4e;
      font-weight: bold;
      justify-content: center;
  }

  .footer-logo img {
      width: 90px;
  }

  .footer-bottom {
      display: flex;
      flex-direction: column;
      margin-top: 10px;
      font-size: 0.9em;
      color: #091b4e;
      padding-top: 10px;
  }

  .footer-bottom p {
      margin: 10px 0 0 180px;
      color: #7b85a1;
      font-size: 20px;

  }

  .footer-bottom::before {
      content: "";
      display: block;
      width: 90%;
      max-width: 1400px;
      height: 2px;
      background-color: #dee0e9;
      margin: 0 auto 10px;
  }

 /* Large screens (max-width: 1420px) */
@media (max-width: 1420px) {
    /* Header */
    .container {
        padding: 0 50px;
    }
    
    .logo {
        font-size: 1.8em;
    }
    
    .logo img {
        width: 80px;
    }
    
    .nav {
        font-size: 18px;
    }

    /* Privacy Policy */
    .content-container {
        padding: 20px 30px;
        font-size: 18px;
    }
    .title {
        font-size: 32px;
    }

    /* Footer */
    .footer-content {
        padding: 0 40px;
    }

    .footer-nav a {
        font-size: 0.95em;
    }

    .footer-logo img {
        width: 35px;
    }

    .footer-bottom {
        font-size: 0.85em;
    }
}

/* Medium screens (max-width: 1200px) */
@media (max-width: 1200px) {
    /* Header */
    .container {
        padding: 0 40px;
    }

    .logo {
        font-size: 1.6em;
    }
    
    .logo img {
        width: 70px;
    }

    .nav {
        font-size: 16px;
    }

    /* Privacy Policy */
    .content-container {
        padding: 20px;
        font-size: 17px;
    }
    .title {
        font-size: 30px;
    }

    /* Footer */
    .footer-content {
        padding: 0 30px;
    }

    .footer-nav a {
        font-size: 0.9em;
    }

    .footer-logo img {
        width: 30px;
    }

    .footer-bottom {
        font-size: 0.8em;
    }
}

/* Tablet screens (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Header */
    .container {
        padding: 0 30px;
    }

    .logo {
        font-size: 1.5em;
    }

    .logo img {
        width: 65px;
    }

    .nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 20px 0;
        gap: 15px;
        text-align: center;
        z-index: 10;
    }

    .nav.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    /* Privacy Policy */
    .content-container {
        padding: 15px;
        font-size: 16px;
    }
    .title {
        font-size: 28px;
        padding-bottom: 40px;
    }
    h3 {
        font-size: 1.3em;
    }
    p, ul {
        font-size: 0.95em;
        line-height: 1.5;
    }

    /* Footer */
    .footer-content {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        font-size: 1.4em;
    }

    .footer-logo img {
        width: 25px;
    }

    .footer-bottom {
        font-size: 0.75em;
        text-align: center;
    }
}

/* Mobile screens (max-width: 768px) */
@media (max-width: 768px) {
    /* Header */
    .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.3em;
    }

    .logo img {
        width: 60px;
    }

    .nav a {
        font-size: 0.85em;
    }

    /* Privacy Policy */
    .content-container {
        padding: 15px;
        font-size: 15px;
    }
    .title {
        font-size: 26px;
        padding-bottom: 30px;
    }
    h3 {
        font-size: 1.2em;
    }
    p, ul {
        font-size: 0.9em;
    }

    /* Footer */
    .footer-content {
        padding: 0 15px;
        gap: 10px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }

    .footer-nav a {
        font-size: 0.8em;
    }

    .footer-logo {
        font-size: 1.2em;
    }

    .footer-logo img {
        width: 20px;
    }

    .footer-bottom {
        font-size: 0.7em;
        text-align: center;
        padding-top: 10px;
    }
}

/* Small mobile screens (max-width: 480px) */
@media (max-width: 480px) {
    /* Header */
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 1.1em;
    }
    
    .logo img {
        width: 55px;
    }
    
    .nav a {
        font-size: 0.8em;
    }

    /* Privacy Policy */
    .content-container {
        padding: 10px;
        font-size: 14px;
    }
    .title {
        font-size: 24px;
        padding-bottom: 20px;
    }
    h3 {
        font-size: 1.1em;
    }
    p, ul {
        font-size: 0.85em;
    }

    /* Footer */
    .footer-content {
        gap: 8px;
    }

    .footer-logo {
        flex-direction: column;
        align-items: center;
        font-size: 1em;
    }

    .footer-logo img {
        width: 15px;
    }

    .footer-logo span {
        font-size: 0.85em;
    }

    .footer-bottom {
        font-size: 0.65em;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 10px;
        margin: 0;
    }
}
