.privacy-premium-section {
  padding: 100px 20px;
  background-color: transparent;
  overflow: hidden;
  z-index: 1;
}

.privacy-premium-section .pattern-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.privacy-premium-section .auto-container {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.subtitle {
  color: #e32636;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.title {
  font-size: 42px;
  font-weight: 800;
  color: #111;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.term-item {
  background: linear-gradient(135deg, #fff, #f9f9f9);
  border-left: 5px solid #e32636;
  padding: 30px 35px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.term-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(227, 38, 54, 0.12);
}

.term-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.term-number {
  font-size: 22px;
  font-weight: 700;
  background: #e32636;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  text-align: center;
  line-height: 46px;
  flex-shrink: 0;
}

.term-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #222;
  margin: 0;
}

.term-content p {
  font-size: 18px;
  color: #555;
  line-height: 1.75;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 767px) {
  .term-item {
    padding: 20px 18px;
  }

  .term-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
  }

  .term-header h2 {
    font-size: 18px;
  }

  .term-content p {
    font-size: 16px;
  }
}

/* Breadcrumb Start */
.bread-crumb {
  list-style: none;
  display: flex;
  justify-content: center;   /* Center horizontally */
  align-items: center;
  flex-wrap: wrap;           /* Allow wrapping on small screens */
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #111;
  margin-top: 30px;
  margin-bottom: 50px;
  padding: 0;
  text-align: center;
}

.bread-crumb li {
  display: flex;
  align-items: center;
}

.bread-crumb li a {
  text-decoration: none;
  color: #111;
  transition: color 0.3s ease;
}

.bread-crumb li a:hover {
  color: #de2c2c;
}

/* Perfectly centered separator */
.bread-crumb li + li:before {
  content: "›";
  display: inline-block;
  margin: 0 6px;   /* equal spacing both sides */
  color: #111;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bread-crumb {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .bread-crumb {
    font-size: 13px;
  }
}
/* Breadcrumb End */