/* Enhanced Typography Styles */

/* Paragraph Styling */
p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
}

/* Enhanced paragraph for content sections */
.about-one__content-text1 p,
.service-details-body p,
.content-text p {
  line-height: 1.9;
  margin-bottom: 25px;
  color: #555;
  font-size: 16px;
  font-weight: 400;
  text-align: justify;
  letter-spacing: 0.3px;
}

/* List Styling */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Enhanced list items */
li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: #555;
  font-size: 16px;
  position: relative;
}

/* Custom bullet points for content lists */
.content-list li,
.about-one__content-text1 li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
}

.content-list li:before,
.about-one__content-text1 li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #fd5523;
  border-radius: 50%;
}

/* Service list styling */
.service-body-list ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  line-height: 1.8;
  color: #555;
  font-size: 16px;
  font-weight: 500;
}

.service-body-list ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  background-color: #fd5523;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(253, 85, 35, 0.3);
}

/* Footer text styling */
.footer-one__about-text {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 25px;
  text-align: justify;
}

/* Contact info styling */
.contact-page__contact-info ul li .text p {
  line-height: 1.7;
  margin-bottom: 8px;
  color: #555;
  font-size: 16px;
}

/* Breadcrumb styling */
.thm-breadcrumb li {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
}

/* Quick links styling */
.footer-one__quick-links-list li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-one__quick-links-list li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-one__quick-links-list li a:hover {
  color: #fd5523;
  padding-left: 5px;
}

/* Enhanced readability for long content */
.about-one__content-text1 {
  text-align: justify;
}

.about-one__content-text1 br {
  line-height: 2.5;
}

/* Responsive typography */
@media (max-width: 768px) {
  p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  .about-one__content-text1 p,
  .service-details-body p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  .content-list li,
  .about-one__content-text1 li {
    font-size: 15px;
    padding-left: 20px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }
  
  .about-one__content-text1 p,
  .service-details-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  
  li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
}