/* ===============================
   Spectrums Instrument – Privacy Policy Page
   =============================== */

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #1f2937;
  line-height: 1.7;
}

/* ===== Page Wrapper ===== */
.legalpages {
  max-width: 1000px;
  margin: 100px auto 60px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* ===== Header Section ===== */
.legalpages__header {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.legalpages__header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}

.legalpages__header h1 {
  position: absolute;
  bottom: 25px;
  left: 40px;
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ===== Content Container ===== */
.legalpages__container {
  padding: 50px 60px;
}

.legalpages__container p {
  margin-bottom: 18px;
  font-size: 15.5px;
  color: #374151;
}

.legalpages__container h2 {
  font-size: 1.3rem;
  color: #00cba9;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 10px;
  border-left: 4px solid #00cba9;
  padding-left: 12px;
}

/* ===== Lists ===== */
.legalpages__container ul {
  margin: 10px 0 25px 25px;
  padding-left: 10px;
}

.legalpages__container ul li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #374151;
}

/* ===== Links ===== */
.legalpages__container a {
  color: #00cba9;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.legalpages__container a:hover {
  color: #009f86;
  text-decoration: underline;
}

/* ===== Strong Emphasis ===== */
.legalpages__container strong {
  color: #111827;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .legalpages {
    margin: 80px 20px 40px;
  }

  .legalpages__container {
    padding: 40px 25px;
  }

  .legalpages__header h1 {
    font-size: 2rem;
    left: 20px;
    bottom: 20px;
  }
}

@media (max-width: 600px) {
  .legalpages__header {
    height: 180px;
  }

  .legalpages__header h1 {
    font-size: 1.6rem;
  }

  .legalpages__container p,
  .legalpages__container li {
    font-size: 14.5px;
  }
}
