
    /* Container for the service details */
.service-details-container {
  font-size: larger;
  padding: 2rem 2rem;
  background-color:white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Header text */
.secure-headingss {
  font-size: 1.8rem;
  font-weight: 700;
  color:rgb(5, 5, 5);
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Main text and UL container */
.service-details {
  color:rgb(0, 0, 0);
  line-height: 1.7;
  font-size: 1rem;
}

/* Main bullet points */
.service-details ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.service-details li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}

/* Tick icon for main items */
.service-details li::before {

  position: absolute;
  left: 0;
  color: green;
}

/* Sub-lists inside each main list item */
.service-details li ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-top: 0.5rem;
  font-weight: normal;
  color: #666;
}

.service-details li ul li::before {
  content: '●';
  color: #555;
  font-size: 0.8rem;
  position: absolute;
  left: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .service-details-container {
    font-size: 1rem;
    padding: 1.5rem 1rem;
  }

  .secure-headingss {
    font-size: 2rem;
  }
}

