:root {
  --primary: #15a362;
  --dark: #003d2c;
  --dark-2: #012f23;
  --text: #18352d;
  --muted: #6b7d76;
  --border: #e6eee9;
  --bg: #f8fbf9;
  --white: #ffffff;
  --shadow: 0 12px 35px rgba(0, 61, 44, 0.08);
  --radius: 18px;
}

.privacy-page {
  background: #fff;
  color: var(--text);
  padding-bottom: 28px;
}


/* Hero */
.privacy-hero {
  padding: 42px 0 32px;
}

.privacy-hero-box {
  min-height: 285px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 46%,
      rgba(238, 248, 243, 0.88) 100%
    );
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  overflow: hidden;
}

.privacy-hero-content {
  padding: 44px 60px;
}

.privacy-badge {
  display: inline-flex;
  align-items: center;
  background: #eef8f3;
  color: var(--primary);
  border: 1px solid rgba(21, 163, 98, .16);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 16px;
}

.privacy-hero-content h1 {
  font-size: 52px;
  line-height: 1.3;
  color: var(--dark);
  font-weight: 900;
  margin-bottom: 16px;
}

.privacy-hero-content p {
  max-width: 620px;
  color: #314a42;
  font-size: 17px;
  line-height: 1.95;
  font-weight: 600;
}

/* Hero Illustration */
.privacy-hero-img {
  min-height: 285px;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(21, 163, 98, .15), transparent 58%);
}

.privacy-hero-img::before {
  content: "";
  position: absolute;
  right: 80px;
  bottom: 34px;
  width: 220px;
  height: 120px;
  background: rgba(21, 163, 98, .10);
  border-radius: 60% 40% 50% 50%;
}

.privacy-hero-img::after {
  content: "";
  position: absolute;
  right: 75px;
  top: 28px;
  width: 220px;
  height: 250px;
  background: rgba(21, 163, 98, .08);
  clip-path: polygon(50% 0%, 92% 14%, 92% 58%, 50% 100%, 8% 58%, 8% 14%);
}

.big-shield {
  width: 150px;
  height: 170px;
  background: linear-gradient(145deg, #19a963, #087344);
  color: #fff;
  position: absolute;
  right: 150px;
  bottom: 35px;
  z-index: 3;
  clip-path: polygon(50% 0%, 90% 14%, 90% 56%, 50% 100%, 10% 56%, 10% 14%);
  display: grid;
  place-items: center;
  font-size: 58px;
  box-shadow: 0 22px 42px rgba(21, 163, 98, .28);
}

.user-card {
  width: 170px;
  height: 120px;
  background: #fff;
  border-radius: 14px;
  position: absolute;
  right: 290px;
  bottom: 68px;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0, 61, 44, .12);
  padding: 24px 26px;
}

.user-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #dff4ea;
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 19px;
  margin-bottom: 13px;
}

.user-card em {
  display: block;
  height: 7px;
  border-radius: 20px;
  background: #c6d8d0;
  margin-bottom: 10px;
}

.user-card em:nth-child(2) {
  width: 86px;
}

.user-card em:nth-child(3) {
  width: 70px;
}

.user-card em:nth-child(4) {
  width: 95px;
}

.hero-check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 24px;
  position: absolute;
  right: 355px;
  bottom: 42px;
  z-index: 4;
  box-shadow: 0 14px 24px rgba(21, 163, 98, .28);
}

/* Content */
.privacy-content {
  padding-bottom: 34px;
}

.privacy-intro-card {
  min-height: 118px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 42px;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 61, 44, .035);
  margin-bottom: 14px;
}

.intro-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eef8f3;
  color: #14824f;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.privacy-intro-card p {
  color: #344940;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 700;
  text-align: center;
}

/* Cards */
.privacy-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.privacy-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  min-height: 112px;
  padding: 20px 34px;
  display: flex;
  gap: 22px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 61, 44, .035);
  transition: .25s ease;
  width: 49%;
  margin: auto;
}

.privacy-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 163, 98, .35);
  box-shadow: var(--shadow);
}

.privacy-num {
  width: 46px;
  height: 54px;
  border-radius: 13px;
  background: #eef8f3;
  color: var(--dark);
  display: grid;
  place-items: center;
  font-size: 23px;
  font-weight: 900;
}

.privacy-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: #eef8f3;
  color: #14824f;
  display: grid;
  place-items: center;
  font-size: 29px;
}

.privacy-text {margin: 0 75px 0 0;}

.privacy-text h2 {
  font-size: 21px;
  color: #132c25;
  font-weight: 900;
  margin-bottom: 6px;
}

.privacy-text p {
  max-width: 800px;
  margin: auto;
  color: #4e625a;
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .privacy-hero-box {
    grid-template-columns: 1fr;
  }

  .privacy-hero-content {
    padding: 34px 28px;
  }

  .privacy-hero-img {
    min-height: 240px;
  }

  .big-shield {
    right: calc(50% - 10px);
  }

  .user-card {
    right: calc(50% - 150px);
  }

  .hero-check {
    right: calc(50% - 86px);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .privacy-hero {
    padding: 28px 0 24px;
  }

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

  .privacy-hero-content p {
    font-size: 15px;
  }

  .privacy-hero-img {
    transform: scale(.88);
    min-height: 220px;
  }

  .privacy-intro-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 20px;
    text-align: center;
  }

  .intro-icon {
    margin: auto;
  }

  .privacy-card {
    gap: 14px;
    padding: 24px 20px;
    text-align: center;
    width: 100%;
    flex-direction: column;
    justify-content: center;
  }
.privacy-text {
    margin: 0 0 0 0;
}
  .privacy-num,
  .privacy-icon {
    margin: auto;
  }

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

  .privacy-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .privacy-hero-img {
    transform: scale(.76);
  }
}