@charset "UTF-8";

:root {
  --blue: #0875d1;
  --blue-dark: #075aa5;
  --navy: #071d3b;
  --text: #10233f;
  --gray: #66758a;
  --line: #e2eaf2;
  --light: #f5f9fc;
  --white: #fff;
  --max: 1440px;
  --header-height: 92px;
}

    /* =========================================================
       PRIVACY POLICY
    ========================================================= */

    .privacy-hero {
      padding: 90px 7% 65px;
      background: #eef6fb;
    }

    .privacy-hero__inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .privacy-hero .label {
      margin: 0;
    }

    .privacy-hero h1 {
      margin: 5px 0 0;
      color: var(--navy);
      font-size: 40px;
      line-height: 1.4;
    }

    .privacy-content {
      padding: 85px 7% 100px;
    }

    .privacy-content__inner {
      max-width: 1000px;
      margin: 0 auto;
    }

    .privacy-intro {
      margin: 0 0 60px;
      color: #34465c;
      font-size: 14px;
      line-height: 2.1;
    }

    .privacy-section {
      padding: 40px 0;
      border-top: 1px solid var(--line);
    }

    .privacy-section:last-child {
      border-bottom: 1px solid var(--line);
    }

    .privacy-section h2 {
      margin: 0 0 20px;
      color: var(--navy);
      font-size: 21px;
      line-height: 1.5;
    }

    .privacy-section p,
    .privacy-section li {
      color: #34465c;
      font-size: 14px;
      line-height: 2;
    }

    .privacy-section p {
      margin: 0;
    }

    .privacy-section ul {
      margin: 18px 0 0;
      padding-left: 1.5em;
    }

    .privacy-contact {
      margin-top: 25px;
      padding: 25px 30px;
      background: #f5f9fc;
    }

    .privacy-contact strong {
      display: block;
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 15px;
    }

    .privacy-back {
      padding: 0 20px 80px;
      display: flex;
      justify-content: center;
    }

    .privacy-back a {
      min-width: 240px;
      padding: 13px 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      color: var(--blue);
      border: 1px solid var(--blue);
      border-radius: 30px;
      font-size: 12px;
      font-weight: 700;
      text-decoration: none;
    }

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.header-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.logo {
  display: block;
}

.logo img {
  display: block;
  width: 80px;
  height: auto;
  max-height: 60px;
  object-fit: contain;
}

footer{
    margin-top:80px;
    padding:30px 20px;

    background:#111;

    color:#fff;

    text-align:center;
}

.site-footer {
  position: relative;
  padding: 30px 20px;
  color: #fff;
  background: #111;
  text-align: center;
}

.footer-links {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  gap: 25px;
  font-size: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

    @media (max-width: 767px) {

      .privacy-hero {
        padding: 60px 22px 45px;
      }

      .privacy-hero h1 {
        font-size: 29px;
      }

      .privacy-content {
        padding: 55px 22px 70px;
      }

      .privacy-intro {
        margin-bottom: 40px;
        font-size: 13px;
        line-height: 1.9;
      }

      .privacy-section {
        padding: 32px 0;
      }

      .privacy-section h2 {
        font-size: 18px;
      }

      .privacy-section p,
      .privacy-section li {
        font-size: 13px;
        line-height: 1.9;
      }

      .privacy-contact {
        padding: 20px;
      }

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px 20px;
}

.footer-links {
  position: static;
  right: auto;
  top: auto;
  transform: none;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;

  width: 100%;
  margin: 0;
}

.footer-copy {
  width: 100%;
  text-align: center;
}
    }