
#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;
  }
}



#text-block-27 {
  color: var(--text-color, #343a40);
}
#text-block-27 .text-segment {
  padding: 60px 0;
  transition: background-color 0.3s ease;
}
/* #text-block-27 .text-segment:not(:first-child) {
    border-top: 1px solid #e9ecef;
} */
#text-block-27 .container {
  max-width: 900px;
}
#text-block-27 .section-title-main {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 50px;
  padding-top: 80px;
  background-color: var(--segment-bg-color-1, #ffffff);
}
#text-block-27 .segment-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: inherit;
  margin-bottom: 25px;
}
#text-block-27 .segment-paragraph {
  font-size: 1.05rem;
  line-height: 1.8;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 1rem;
}
#text-block-27 .segment-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #text-block-27 .text-segment {
    padding: 50px 0;
  }
  #text-block-27 .section-title-main {
    font-size: 2rem;
    padding-top: 60px;
    margin-bottom: 40px;
  }
  #text-block-27 .segment-heading {
    font-size: 1.6rem;
  }
  #text-block-27 .segment-paragraph {
    font-size: 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);
  }
}


