
#text-block-1 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
}
#text-block-1 .container {
  max-width: 800px;
}
#text-block-1 .section-title-optional {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#text-block-1 .text-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 30px;
}
#text-block-1 .text-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color, #555e68);
  opacity: 0.95;
  margin-bottom: 1.5rem;
  text-align: justify;
}
#text-block-1 .text-paragraph:last-child {
  margin-bottom: 0;
}
#text-block-1 hr.divider {
  border-top: 2px solid rgba(0, 0, 0, 0.08);
  width: 80px;
  margin: 40px auto;
}
@media (max-width: 767.98px) {
  #text-block-1 {
    padding: 60px 0;
  }
  #text-block-1 .text-heading {
    font-size: 2rem;
  }
  #text-block-1 .text-paragraph {
    font-size: 1rem;
    text-align: left;
  }
}



#content-block-10 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 900px;
}
#content-block-10 .header {
  text-align: center;
  margin-bottom: 40px;
}
#content-block-10 .header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
#content-block-10 .header p {
  font-size: 1.1rem;
  color: #777;
}
#content-block-10 .content-body {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
  column-count: 2;
  column-gap: 30px;
}
@media (max-width: 768px) {
  #content-block-10 .content-body {
    column-count: 1;
  }
}



#why-choose-us-16 {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: var(--wcu16-text-color, #ffffff);
  z-index: 1;
}
#why-choose-us-16::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--wcu16-overlay-color, rgba(0, 0, 0, 0.6));
  z-index: -1;
}
#why-choose-us-16 .section-header {
  margin-bottom: 3rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
#why-choose-us-16 .section-header h2 {
  font-weight: 700;
  color: inherit;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
#why-choose-us-16 .features-row {
  position: relative;
  z-index: 2;
}
#why-choose-us-16 .feature-item-overlay {
  text-align: center;
  padding: 1rem;
  margin-bottom: 1.5rem;
}
#why-choose-us-16 .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: inherit;
  transition: transform 0.3s ease;
}
#why-choose-us-16 .feature-item-overlay:hover .feature-icon {
  transform: scale(1.1);
}
#why-choose-us-16 .feature-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: inherit;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 767.98px) {
  #why-choose-us-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-attachment: scroll;
  }
  #why-choose-us-16 .section-header {
    margin-bottom: 2rem;
  }
  #why-choose-us-16 .feature-icon {
    font-size: 2.5rem;
  }
  #why-choose-us-16 .feature-title {
    font-size: 1.1rem;
  }
}



#call-to-action-5 {
  position: relative;

  background-size: cover;
  background-position: center;
  padding: 100px 15px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
#call-to-action-5::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
#call-to-action-5 .content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease;
}
#call-to-action-5 h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeIn 1.2s ease;
}
#call-to-action-5 p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  animation: fadeIn 1.4s ease;
}
#call-to-action-5 .btn {
  background-color: #28a745;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s;
  animation: fadeInUp 1.6s ease;
}
#call-to-action-5 .btn:hover {
  transform: scale(1.1);
  background-color: #218838;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


