/* ===== Base Styling ===== */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}

/* ===== Intro / Hero Section ===== */
.private-labelling {
  background: linear-gradient(rgba(26, 35, 126, 0.5), rgba(26, 35, 126, 0.5)),
              url('./images/private.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.private-labelling h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: #fff;
}

.private-labelling .section-intro {
  max-width: 900px;
  margin: auto;
  font-size: 1.5rem;
}

/* ===== Main Details Section ===== */
.private-labelling-details {
  /* max-width: 1100px; */
  margin: auto;
  padding: 50px 20px;
}

/* ===== Section Titles ===== */
.private-labelling-details h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a237e;
  border-left: 5px solid #ff9800;
  padding-left: 10px;
}

.private-labelling-details h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #0d47a1;
}

/* ===== Paragraphs ===== */
.private-labelling-details p {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 15px;
}

/* ===== Lists ===== */
.private-labelling-details ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.private-labelling-details ul li {
  background: url('check-icon.png') no-repeat left 5px / 18px;
  list-style: disc;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 1.3rem;
}

/* ===== Example Box ===== */
.example-box {
  background: #fff3e0;
  border-left: 5px solid #ff9800;
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
}

.example-box h2 {
  color: #e65100;
}

/* ===== Card-like Section Containers ===== */
.section-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 25px;
  margin-bottom: 30px;  
  transition: transform 0.3s ease;
}

.section-card:hover {
  transform: translateY(-4px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .private-labelling h2 {
    font-size: 2rem;
  }

  .private-labelling-details h2 {
    font-size: 1.5rem;
  }
}
