/* =========================
   PRIVACY POLICY PAGE
========================= */

.privacy-policy {
  margin-top: 30px;
}

/* PAGE HEADING */
.privacy-policy h1 {
  font-size: 2.2rem;
  border-bottom: 1px solid #555;
  padding-bottom: 10px;
  margin-bottom: 25px;
}

/* INTRO TEXT */
.privacy-policy .intro {
  background: #0f0f1f;
  padding: 18px 20px;
  border-radius: 8px;
  color: #d6d6d6;
  line-height: 1.6;
  margin-bottom: 30px;
  border: 1px solid #2a2a40;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
}

/* =========================
   BOX GRID
========================= */

.box-container {
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
  justify-content: center;
}

/* INDIVIDUAL BOX */
.box {
  background: #1a1a2e;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #2f2f4f;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.box:hover {
  transform: translateY(-3px);
  border-color: #00ffd0;
}

/* BOX HEADING */
.box h2 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #ffffff;
}

/* PARAGRAPHS */
.box p {
  font-size: 0.9rem;
  color: #cfcfcf;
  margin-bottom: 10px;
  line-height: 1.5;
}

/* LIST */
.box ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.box ul li {
  font-size: 0.88rem;
  color: #bdbdbd;
  margin-bottom: 6px;
}

/* EMPHASIS / WARNING TEXT */
.box h3 {
  font-size: 0.85rem;
  color: #00ffd0;
  margin-top: 10px;
  line-height: 1.4;
}

/* =========================
   RESPONSIVE SAFETY
========================= */

@media (max-width: 600px) {
  .privacy-policy h1 {
    font-size: 1.8rem;
  }

  .box {
    padding: 16px;
  }
}


/* .privacy-policy h1 {
    font-size: 28px;
    margin-bottom: 24px;
    padding: 10px 0;
    border-bottom: 1px solid #555;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-policy .container{
    width: 70%;
    justify-self: center;
    display: flex;
}

.privacy-policy .intro{
    display: flex;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-policy .box{
    background-color: #2a2340;
    margin: 20px;
    padding: 5px 10px;
    list-style-position: inside;
    border-radius: 10px;
}

.privacy-policy h2{
    font-size: 1.3rem;
    padding: 10px 0;
}

.privacy-policy h3{
    font-size: 1rem;
    padding: 10px 0;
}

@media (max-width: 1580px) {
.privacy-policy .container{
    width: 90%;
    justify-self: center;
    display: flex;
}
}
@media (max-width: 900px) {
.privacy-policy .container{
    width: 100%;
    justify-self: center;
    display: flex;
}
} */