.privacy-section {
  padding: 60px 0 60px 0;
  color: #ffffff;
  background: #111825;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

/* Pill */
.privacy-pill {
  padding: 6px 14px 8px;
  background: #282f3a;
}

.privacy-pill__icon {
  margin-right: 5px;
}

/* Pill text (safe fallback) */
.privacy-pill__text {
  font-size: 14px;
  color: #fff;
  display: inline-block;
  line-height: 18px;
}

@supports (-webkit-background-clip: text) {
  .privacy-pill__text {
    background: linear-gradient(90deg, rgba(241, 101, 242, 0.9), rgba(163, 135, 248, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

/* Main heading */
.privacy-title {
  color: #ffffff;
  font-size: 38px;
  line-height: 46px;
}

/* Card wrappers */
.my-box,
.my-box1,
.my-box2 {
  padding: 0 20px 20px;
  height: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  text-align: center;
}

/* Card images (optional, keeps them responsive) */
.privacy-card__icon {
  max-width: 100%;
  height: auto;
}

/* Card headings */
.my-box h1,
.my-box1 h1,
.my-box2 h1 {
  color: #fff;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.1px;
  margin: 0;
}

/* Card paragraphs (CENTER FIX) */
.my-box p,
.my-box1 p,
.my-box2 p {
  color: rgba(255, 255, 255, 0.88);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;

  display: block !important;   /* kills d-flex if present */
  width: 100%;
  margin: 10px auto 0;
  text-align: center !important;
}

/* If any <p> accidentally has d-flex, kill it */
.privacy-section p.d-flex {
  display: block !important;
}

/* Borders */
.my-box {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-image-source: linear-gradient(
    52.79deg,
    rgba(17, 24, 37, 0.2) 8.39%,
    rgba(144, 116, 255, 0.2) 19.54%,
    rgba(162, 193, 250, 0.2) 34.33%,
    rgba(108, 252, 247, 0.2) 46.23%,
    rgba(162, 193, 250, 0.2) 60.03%,
    rgba(144, 116, 255, 0.2) 70.88%,
    rgba(17, 24, 37, 0.2) 83.63%
  );
  border-image-slice: 1;
  border-image-repeat: stretch;
}

.my-box1 {
  border-width: 0 1px 1px 0;
  border-style: solid;
  border-image-source: linear-gradient(
    82.99deg,
    rgba(17, 24, 37, 0.2) -17.08%,
    rgba(144, 116, 255, 0.2) -0.1%,
    rgba(162, 193, 250, 0.2) 22.43%,
    rgba(108, 252, 247, 0.2) 40.55%,
    rgba(162, 193, 250, 0.2) 61.56%,
    rgba(144, 116, 255, 0.2) 78.09%,
    rgba(17, 24, 37, 0.2) 97.5%
  );
  border-image-slice: 1;
}

.my-box2 {
  border-width: 0 0 1px 1px;
  border-style: solid;
  border-image-source: linear-gradient(
    109.6deg,
    rgba(17, 24, 37, 0.2) 8.89%,
    rgba(144, 116, 255, 0.2) 19.61%,
    rgba(162, 193, 250, 0.2) 33.84%,
    rgba(108, 252, 247, 0.2) 45.29%,
    rgba(162, 193, 250, 0.2) 58.56%,
    rgba(144, 116, 255, 0.2) 69%,
    rgba(17, 24, 37, 0.2) 81.26%
  );
  border-image-slice: 1;
}

/* Fix: blue text (link override) */
.privacy-section a,
.privacy-section a:visited,
.privacy-section a:hover,
.privacy-section a:active {
  color: #ffffff;
  text-decoration: none;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .privacy-title {
    font-size: 28px;
    line-height: 34px;
  }

  /* When cards stack, borders should not look broken */
  .my-box,
  .my-box1,
  .my-box2 {
    border-width: 0 0 1px 0;
  }
}
