:root{
		/* color */
		--primary-color: #0039a7;
		--paragraph-color: #111;
    --section-bg: #f5f8fb;
		--text-size: clamp(0.7rem, 1.0vw, 1.0rem);
    --text-size-md: clamp(14px, 15px, 1.05rem);
}

body {
	font-family: var(--font-family1);
	font-size: var(--text-size);	
	color: var(--text-color);
	line-height: 1.6;
}

/* Body Text */
p,
ul li{
	font-family: var(--font-family1);
	font-weight: 500;
	color: var(--paragraph-color);
	line-height: 1.6rem;
	letter-spacing:normal;
	margin-bottom: var(--space-md);
	text-align: justify;
}

/* Ul Lists */
ul.list-style-one {
  max-width: 700px;
  margin: auto;
  padding: 0;
  list-style: none;
}

ul.list-style-one li {
      position: relative;
      margin: 15px 0;
      padding: 15px 20px 15px 45px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }

ul.list-style-one li:hover {
      transform: translateX(5px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    }

ul.list-style-one li::before {
      content: "✔";
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      font-size: 16px;
      color: #6366f1;
      font-weight: bold;
    }

    /* Responsive spacing */
    @media (max-width: 600px) {
ul.list-style-one li {
        padding: 12px 15px 12px 15px;
        font-size: 12px;
      }

      ul.list-style-one li::before{
        display: none;
      }
    }

section .material-icons, section .fa {
    font-size: 12px;
}

.box-heading{
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
}

@media (max-width: 600px) {
.box-heading{
  font-size: 18px;
}
}

@media (min-width: 601px) and (max-width: 768px) {
.box-heading{
  font-size: 20px;
}
}

@media (min-width: 769px) and (max-width: 1199px) {
  .box-heading{
  font-size: 20px;

}
  }

@media (min-width: 1200px) {
  .box-heading{
  font-size: 20px;

}
}

/* ---------- Section ------- */
.sec-block
{
  background: var(--section-bg);
/*  background: rgba(0, 123, 255, 0.3);*/
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin: 20px auto;
  padding: 15px 20px 20px 20px;
  width: 100%;
  position: relative;
}

.badge {    
    color: white;
    /*font-size: 0.7rem;*/
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 12px;
    margin-left: 0.7rem;
    vertical-align: middle;
}