.privacy-section {
  padding: 5rem 0;
  background: var(--background);
}

.privacy-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}

.privacy-intro {
  margin-bottom: 4rem;
}

.privacy-intro p {
  font-size: 1.05rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.privacy-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ================================
   PREMIUM PRIVACY CARD DESIGN
================================ */

.privacy-card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1.75rem;
  padding: 2.4rem 2.2rem;
  overflow: hidden;

  box-shadow: 0px 18px 55px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);

  transition: all 0.45s ease;
}
/* Base list */
.privacy-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 1rem 0;
}

/* Nested list (indent level 2) */
.privacy-card ul ul {
  list-style: circle;        /* different bullet style */
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

/* Level 3 (optional) */
.privacy-card ul ul ul {
  list-style: square;
}

/* Spacing between items */
.privacy-card li {
  margin-bottom: 0.6rem;
}
/* soft glow background inside card */
.privacy-card::before {
  content: "";
  position: absolute;
  top: -90px;
  left: -90px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(25,145,210,0.18), transparent 70%);
  opacity: 0;
  transition: all 0.55s ease;
  border-radius: 50%;
}

/* premium gradient line top */
.privacy-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, #1991d2, #0b6ea8, #074b78);
  opacity: 0.85;
}

/* hover lift + glow */
.privacy-card:hover {
  transform: translateY(-10px);
  border-color: rgba(25,145,210,0.25);
  box-shadow: 0px 35px 90px rgba(15, 23, 42, 0.14);
}

.privacy-card:hover::before {
  opacity: 1;
}

/* ================================
   HEADER PREMIUM
================================ */

.privacy-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.6rem;
  position: relative;
  z-index: 2;
}

/* icon box premium */
.privacy-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: rgba(25,145,210,0.10);
  border: 1px solid rgba(25,145,210,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  box-shadow: 0px 14px 40px rgba(25,145,210,0.12);
  transition: all 0.45s ease;
}

/* icon hover effect */
.privacy-card:hover .privacy-icon {
  background: linear-gradient(135deg, #1991d2, #0b6ea8);
  border-color: rgba(255,255,255,0.25);
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0px 18px 55px rgba(25,145,210,0.30);
}

.privacy-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke: var(--primary);
  color: var(--primary);
  transition: all 0.45s ease;
}

.privacy-card:hover .privacy-icon svg {
  stroke: #ffffff;
  color: #ffffff;
}

/* title premium */
.privacy-card-header h2 {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--foreground);
  margin-top: 0.35rem;
  line-height: 1.25;
  letter-spacing: -0.4px;
}

/* ================================
   CONTENT PREMIUM
================================ */

.privacy-card-content {
  position: relative;
  z-index: 2;
  color: var(--muted-foreground);
  line-height: 1.8;
  font-size: 1rem;
  font-weight: 500;
}

/* UL style */
.privacy-card-content ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

/* li premium */
.privacy-card-content li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  font-size: 0.98rem;
  line-height: 1.7;
}

/* bullet premium */
.privacy-card-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1991d2, #0b6ea8);
  box-shadow: 0px 8px 18px rgba(25,145,210,0.35);
}


.privacy-help-section {
  margin-top: 4rem;
  padding: 3rem;
  border-radius: 1.75rem;
  background: linear-gradient(
    135deg,
    hsla(201, 79%, 46%, 0.05),
    hsla(201, 79%, 46%, 0.1),
    hsla(201, 79%, 46%, 0.05)
  );
  border: 1px solid hsla(201, 79%, 46%, 0.2);
}

.privacy-help-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.privacy-help-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.privacy-help-header p {
  max-width: 42rem;
  margin: 0 auto;
  color: var(--muted-foreground);
  font-size: 1rem;
}

.privacy-help-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.privacy-help-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.privacy-help-icon {
  padding: 0.75rem;
  background: hsla(201, 79%, 46%, 0.1);
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.privacy-help-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: var(--primary);
  color: var(--primary);
}

.privacy-help-card h3 {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.privacy-help-card p {
  font-size: 0.9rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  margin: 0;
}

@supports (content-visibility: auto) {
  @media (max-width: 991px) {
    .privacy-section {
      content-visibility: auto;
      contain-intrinsic-size: 1px 2400px;
    }
  }
}
