
#hero-6 {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}
#hero-6 .hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}
#hero-6 .hero-subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}
.card-item {
  background: #f8f9fa;
  padding: 30px;
  margin: 15px;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}
.card-icon {
  font-size: 48px;
  color: #2575fc;
  margin-bottom: 15px;
}
.card-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
.card-description {
  font-size: 16px;
  color: #555;
}



#overview-16 {
  position: relative;
  overflow: hidden;
}
#overview-16 .split-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
}
#overview-16 .split-background-container .split-bg-image,
#overview-16 .split-background-container .split-bg-color {
  width: 50%;
  height: 100%;
}
#overview-16 .split-background-container .split-bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#overview-16[data-image-side="right"] .split-bg-image {
  order: 2;
}
#overview-16[data-image-side="right"] .split-bg-color {
  order: 1;
}
#overview-16[data-image-side="left"] .split-bg-image {
  order: 1;
}
#overview-16[data-image-side="left"] .split-bg-color {
  order: 2;
}
#overview-16 .container {
  position: relative;
  z-index: 1;
  color: var(--text-color, #333);
}
#overview-16 .overview-section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#overview-16 .content-wrapper {
  max-width: 580px;
  padding: 2.5rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.5rem;
  margin-left: 0;
  margin-right: auto;
}
#overview-16[data-image-side="left"] .content-wrapper {
  margin-left: auto;
  margin-right: 0;
}
#overview-16 .content-wrapper .section-heading {
  margin-bottom: 0.5rem;
  color: inherit;
}
#overview-16 .content-wrapper .lead {
  color: inherit;
  opacity: 0.9;
  margin-bottom: 2rem;
}
#overview-16 .content-detail-block {
  margin-bottom: 1.8rem;
}
#overview-16 .content-detail-block:last-child {
  margin-bottom: 0;
}
#overview-16 .content-detail-block h5 {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--bs-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}
#overview-16 .content-detail-block h5 i {
  margin-right: 0.75rem;
  opacity: 0.8;
}
#overview-16 .content-detail-block p {
  line-height: 1.7;
  color: inherit;
  opacity: 0.95;
  margin-bottom: 0;
}
#overview-16 .content-wrapper .btn {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  #overview-16 .split-background-container {
    flex-direction: column;
  }
  #overview-16 .split-background-container .split-bg-image,
  #overview-16 .split-background-container .split-bg-color {
    width: 100%;
    height: 50%;
  }
  #overview-16 .split-background-container .split-bg-image {
    order: 1 !important;
  }
  #overview-16 .split-background-container .split-bg-color {
    order: 2 !important;
  }
  #overview-16 .content-wrapper {
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, 0.95);
    max-width: 90%;
  }
  #overview-16 .overview-section-padding {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
@media (max-width: 767px) {
  #overview-16 .content-wrapper {
    padding: 1.5rem;
  }
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.post-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}
.post-section .section-header h2 {
  font-size: 2rem;
  font-weight: 700;
}
.post-section .section-header p {
  color: #666;
  margin-top: 8px;
}

/* === Grid === */
.post-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1,1fr);
}
@media (min-width: 576px) {
  .post-grid { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 992px) {
  .post-grid { grid-template-columns: repeat(4,1fr); }
}

/* === Card & Ken Burns Image === */
.post-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  transition: transform 0.3s;
}
.post-card:hover {
  transform: translateY(-5px);
}

/* Ken Burns animation */
@keyframes kenburns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.2) translate(-10px, -10px); }
}
.post-card .card-image img {
  width: 100%;
  display: block;
  animation: kenburns var(--kb-duration) ease-in-out infinite alternate;
}

/* Overlay on hover */
.post-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.post-card:hover .overlay {
  transform: translateY(0);
}
.post-card .overlay h5 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.post-card .overlay .btn-readmore {
  font-size: 0.85rem;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.post-card .overlay .btn-readmore:hover {
  background: #fff;
  color: #000;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin: 40px 0;
}




#timeline-15 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e9ecef;
  overflow: hidden;
}
#timeline-15 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-15 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-15 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-15.layout-vertical-alternating .timeline-wrapper {
  position: relative;
  max-width: 900px;
  margin: 4rem auto 0 auto;
}
#timeline-15.layout-vertical-alternating .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #ced4da;
  top: 15px;
  bottom: 15px;
  left: 50%;
  margin-left: -1.5px;
  z-index: 1;
}
#timeline-15.layout-vertical-alternating .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  margin-bottom: 2rem;
}
#timeline-15.layout-vertical-alternating .timeline-item:last-child {
  margin-bottom: 0;
}
#timeline-15.layout-vertical-alternating .timeline-item::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #f8f9fa;
  border: 4px solid var(--bs-primary);
  top: 18px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 3px #f8f9fa;
}
#timeline-15.layout-vertical-alternating .timeline-marker-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  top: 18px;
  text-align: center;
  z-index: 3;
  line-height: 24px;
  color: var(--bs-primary);
  font-size: 0.8rem;
}
#timeline-15.layout-vertical-alternating .timeline-left {
  left: 0;
  padding-right: 35px;
}
#timeline-15.layout-vertical-alternating .timeline-left::after {
  left: -12px;
}
#timeline-15.layout-vertical-alternating .timeline-left .timeline-marker-icon {
  right: -12px;
}
#timeline-15.layout-vertical-alternating .timeline-right {
  left: 50%;
  padding-left: 73px;
}
#timeline-15.layout-vertical-alternating .timeline-right::after {
  left: -12px;
}
#timeline-15.layout-vertical-alternating .timeline-right .timeline-marker-icon {
  left: -12px;
}
#timeline-15.layout-vertical-alternating .timeline-content {
  padding: 1.5rem;
  background-color: #ffffff;
  position: relative;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}
#timeline-15 .timeline-timeframe {
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 1.1rem;
}
#timeline-15 .timeline-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #343a40;
}
#timeline-15 .timeline-item-title i {
  margin-right: 0.5rem;
  opacity: 0.8;
}
#timeline-15 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}
#timeline-15 .timeline-item-status {
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 0.25rem;
  color: #6c757d;
  background-color: #e9ecef;
}
#timeline-15 .timeline-item-status.status-in-progress {
  color: #055160;
  background-color: #cff4fc;
}
#timeline-15 .timeline-item-status.status-beta-testing {
  color: #664d03;
  background-color: #fff3cd;
}
@media screen and (max-width: 767.98px) {
  #timeline-15.layout-vertical-alternating .timeline-wrapper::after {
    left: 31px;
  }
  #timeline-15.layout-vertical-alternating .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 15px;
    margin-bottom: 2rem;
  }
  #timeline-15.layout-vertical-alternating .timeline-left,
  #timeline-15.layout-vertical-alternating .timeline-right {
    left: 0%;
  }
  #timeline-15.layout-vertical-alternating .timeline-left::after,
  #timeline-15.layout-vertical-alternating .timeline-right::after {
    left: 19px;
    width: 22px;
    height: 22px;
    border-width: 3px;
  }
  #timeline-15.layout-vertical-alternating .timeline-left .timeline-marker-icon,
  #timeline-15.layout-vertical-alternating
    .timeline-right
    .timeline-marker-icon {
    left: 19px;
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 0.7rem;
  }
  #timeline-15 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #timeline-15 .section-title {
    font-size: 2.1rem;
  }
  #timeline-15 .timeline-timeframe {
    font-size: 1rem;
  }
  #timeline-15 .timeline-item-title {
    font-size: 1.1rem;
  }
}



#content-block-12 {
  padding: 60px 15px;
  margin: 0 auto;
  max-width: 1000px;
  text-align: center;
}
#content-block-12 .quote-block {
  background: #f1f1f1;
  padding: 50px 30px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-style: italic;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#content-block-12 .quote-block .author {
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}



#press-mentions-5 {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background-color: #f8f9fa;
  overflow: hidden;
  position: relative;
}
#press-mentions-5 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#press-mentions-5 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-5 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-5 .pm5-swiper-container {
  overflow: hidden;
  position: relative;
}
#press-mentions-5 .swiper-slide .quote-slide-content {
  background-color: #ffffff;
  border: 1px solid #e0e5eb;
  border-radius: 0.5rem;
  padding: 2.5rem 2rem;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.06);
  text-align: left;
}
#press-mentions-5 .quote-slide-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: #343a40;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex-grow: 1;
  position: relative;
}
#press-mentions-5 .quote-slide-quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: -10px;
  top: -10px;
  font-size: 2rem;
  color: var(--bs-primary);
  opacity: 0.15;
}
#press-mentions-5 .quote-slide-source {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f1f1f1;
  display: flex;
  align-items: center;
}
#press-mentions-5 .quote-slide-source .source-logo img {
  height: 30px;
  width: auto;
  max-width: 100px;
  margin-right: 1rem;
  filter: contrast(0) brightness(1.5);
  opacity: 0.8;
}
#press-mentions-5 .quote-slide-source .source-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: #495057;
}
#press-mentions-5 .quote-slide-source .article-link {
  font-size: 0.8rem;
  color: var(--bs-primary);
  text-decoration: none;
  display: block;
}
#press-mentions-5 .quote-slide-source .article-link:hover {
  text-decoration: underline;
}
#press-mentions-5 .quote-slide-source .article-link i {
  margin-left: 0.3rem;
  font-size: 0.8em;
}
#press-mentions-5 .swiper-slide .logo-slide-content {
  text-align: center;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
}
#press-mentions-5 .logo-slide-content a {
  display: inline-block;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-5 .logo-slide-content a:hover {
  filter: grayscale(0%);
  opacity: 1;
}
#press-mentions-5 .logo-slide-content img {
  max-width: 100%;
  height: auto;
  max-height: 50px;
  vertical-align: middle;
}
#press-mentions-5 .swiper-pagination-pm5 {
  position: static;
  margin-top: 2rem;
}
#press-mentions-5 .swiper-pagination-pm5 .swiper-pagination-bullet {
  background-color: var(--bs-primary);
  opacity: 0.5;
  width: 10px;
  height: 10px;
}
#press-mentions-5 .swiper-pagination-pm5 .swiper-pagination-bullet-active {
  opacity: 1;
}
#press-mentions-5 .swiper-button-next-pm5,
#press-mentions-5 .swiper-button-prev-pm5 {
  color: var(--bs-primary);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
}
#press-mentions-5 .swiper-button-next-pm5:hover,
#press-mentions-5 .swiper-button-prev-pm5:hover {
  background-color: #ffffff;
}
#press-mentions-5 .swiper-button-next-pm5::after,
#press-mentions-5 .swiper-button-prev-pm5::after {
  font-size: 1rem;
  font-weight: 900;
}
#press-mentions-5 .swiper-button-prev-pm5 {
  left: 10px;
}
#press-mentions-5 .swiper-button-next-pm5 {
  right: 10px;
}
@media (max-width: 767.98px) {
  #press-mentions-5 {
    padding-bottom: 5rem;
  }
  #press-mentions-5 .swiper-button-next-pm5,
  #press-mentions-5 .swiper-button-prev-pm5 {
    display: none;
  }
  #press-mentions-5 .quote-slide-content {
    padding: 1.5rem;
    min-height: 240px;
  }
  #press-mentions-5 .quote-slide-quote {
    font-size: 1rem;
  }
}



#features-19 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-19']['bg_color'] ?? '#ffffff' }};
}
#features-19 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-19 .section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bs-primary, #0d6efd);
  bottom: 0;
  left: calc(50% - 25px);
}
#features-19 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-19 .feature-list-item {
  display: flex;
  align-items: flex-start; 
  margin-bottom: 40px; 
}
#features-19 .feature-list-item:last-child {
  margin-bottom: 0;
}
#features-19 .feature-list-icon {
  flex-shrink: 0;
  width: 64px; 
  height: 64px; 
  background: var(--bs-primary-light, #e7f1ff); 
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; 
  margin-right: 25px; 
}
#features-19 .feature-list-icon i {
  color: var(--bs-primary, #0d6efd);
  font-size: 28px; 
  line-height: 0; 
}
#features-19 .feature-list-content h4 {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 20px;
  color: #343a40;
}
#features-19 .feature-list-content p {
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 0; 
  font-size: 16px;
}
@media (max-width: 767.98px) {
  #features-19 .section-title h2 {
    font-size: 28px;
  }
  #features-19 .feature-list-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  #features-19 .feature-list-icon i {
    font-size: 22px;
  }
   #features-19 .feature-list-content h4 {
     font-size: 18px;
   }
   #features-19 .feature-list-content p {
     font-size: 15px;
   }
}
@media (max-width: 575.98px) {
    #features-19 .feature-list-item {
      flex-direction: column; 
      align-items: center; 
      text-align: center;
    }
    #features-19 .feature-list-icon {
      margin-right: 0;
      margin-bottom: 15px; 
    }
}



#faq-26 {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #212529;
}
#faq-26::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#faq-26 .container {
  position: relative;
  z-index: 2;
}
#faq-26 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
#faq-26 .faq-content-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
#faq-26 .faq-minimal-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#faq-26 .faq-minimal-item:last-child {
  border-bottom: none;
}
#faq-26 .faq-minimal-question {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}
#faq-26 .faq-minimal-answer {
  line-height: 1.7;
  margin-bottom: 0;
  opacity: 0.9;
}
#faq-26 .accordion-item {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  border-radius: 6px !important;
  overflow: hidden;
}
#faq-26 .accordion-button {
  font-weight: 600;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
  background-color: transparent;
}
#faq-26 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: rgba(231, 241, 255, 0.8);
}
#faq-26 .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.2s ease-in-out;
  filter: brightness(0.6);
}
#faq-26 .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230d6efd'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
  filter: none;
}
#faq-26 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: transparent;
}
#faq-26 .accordion-body p:last-child {
  margin-bottom: 0;
}



#why-choose-us-7 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#why-choose-us-7 .row {
  display: flex;
  gap: 30px;
  align-items: center;
}
#why-choose-us-7 .image-column {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}
#why-choose-us-7 .image-column img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#why-choose-us-7 .content-column {
  flex: 2;
}
#why-choose-us-7 .content-column h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
#why-choose-us-7 .reason-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#why-choose-us-7 .reason-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
#why-choose-us-7 .reason-list li i {
  font-size: 2rem;
  color: #28a745;
  margin-right: 15px;
}
#why-choose-us-7 .reason-list li .reason-content h5 {
  margin: 0;
  font-size: 1.2rem;
}
#why-choose-us-7 .reason-list li .reason-content p {
  margin: 0;
  color: #555;
}
@media (max-width: 768px) {
  #why-choose-us-7 .row {
    flex-direction: column;
  }
}



#text-block-19 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
  color: var(--text-color, #343a40);
}
#text-block-19 .container {
  max-width: 850px;
}
#text-block-19 .featured-image-wrapper {
  margin-bottom: 40px;
  text-align: center;
}
#text-block-19 .content-below-image .featured-image-wrapper {
  margin-bottom: 0;
  margin-top: 40px;
}
#text-block-19 .featured-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
}
#text-block-19 .image-caption {
  display: block;
  font-size: 0.9rem;
  color: #6c757d;
  font-style: italic;
  text-align: center;
}
#text-block-19 .text-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-color, #343a40);
  margin-bottom: 25px;
}
#text-block-19 .text-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color, #555e68);
  opacity: 0.95;
  margin-bottom: 1.5rem;
}
#text-block-19 .text-paragraph:last-child {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #text-block-19 {
    padding: 60px 0;
  }
  #text-block-19 .text-heading {
    font-size: 2rem;
  }
  #text-block-19 .text-paragraph {
    font-size: 1rem;
  }
  #text-block-19 .featured-image-wrapper {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}



#cta-banner-15 {
  padding: 5rem 1rem;
  position: relative;
  text-align: center;
  overflow: hidden;
  background-color: #ffffff;
  color: #212529;
}
#cta-banner-15 .container {
  max-width: 750px;
}
#cta-banner-15 .content-image-wrapper {
  margin-bottom: 2rem;
}
#cta-banner-15 .content-image-wrapper img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
  border-radius: 0.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#cta-banner-15 .cta-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
#cta-banner-15 .cta-subtitle {
  font-size: 1.15rem;
  color: #555;
  margin-bottom: 1rem;
}
#cta-banner-15 .cta-description {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}
#cta-banner-15 .cta-button .btn {
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 500;
}
#cta-banner-15 .cta-button .btn i {
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  #cta-banner-15 {
    padding: 4rem 1rem;
  }
  #cta-banner-15 .content-image-wrapper img {
    max-height: 200px;
  }
  #cta-banner-15 .cta-title {
    font-size: 2rem;
  }
  #cta-banner-15 .cta-subtitle {
    font-size: 1.05rem;
  }
  #cta-banner-15 .cta-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  #cta-banner-15 .cta-button .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


