
#hero-16 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
}
#hero-16 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#hero-16 .hero-content-wrapper-16 {
  max-width: 650px;
  padding: 2.5rem 3.5rem;
  border-radius: 15px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
  color: #ffffff;
}
#hero-16 .hero-title-16 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-16 .hero-subtitle-16 {
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-16 .hero-cta-button-16 {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease;
  background-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
#hero-16 .hero-cta-button-16:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
@media (max-width: 767.98px) {
  #hero-16 {
    min-height: 65vh;
    padding: 3rem 1rem;
  }
  #hero-16 .hero-content-wrapper-16 {
    padding: 2rem;
    max-width: 90%;
  }
  #hero-16 .hero-title-16 {
    font-size: 2.2rem;
  }
  #hero-16 .hero-subtitle-16 {
    font-size: 1rem;
  }
}



#overview-2 {
  overflow: hidden;
}
#overview-2 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
#overview-2 .overview-image {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  aspect-ratio: 16/9;
}
#overview-2 .overview-features-list {
  list-style: none;
  padding-left: 0;
}
#overview-2 .overview-feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
#overview-2 .overview-feature-icon {
  font-size: 1.5rem;
  color: var(--bs-primary);
  margin-right: 1rem;
  width: 2rem;
  text-align: center;
  flex-shrink: 0;
}
#overview-2 .overview-feature-text h5 {
  margin-bottom: 0.25rem;
  font-weight: 600;
}
#overview-2 .overview-feature-text p {
  margin-bottom: 0;
  color: #6c757d;
}
@media (max-width: 991.98px) {
  #overview-2 .overview-image {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #overview-2 .overview-section-padding {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}



/* style.css for post-section-3 */
#post-section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #eef1f5; /* A cool, light grey background */
}

#post-section-3 .section-header {
    margin-bottom: 50px;
    text-align: center;
}

#post-section-3 .section-header .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #2a3b4c; /* Dark blue-grey */
    margin-bottom: 12px;
}

#post-section-3 .section-header .section-subtitle {
    font-size: 1.1rem;
    color: #586776; /* Softer grey */
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#post-section-3 .post-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px; /* Rounded corners for the item */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    height: 280px; /* Fixed height for grid items, adjust as needed */
}

#post-section-3 .post-grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

#post-section-3 .post-grid-item-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

#post-section-3 .post-grid-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

#post-section-3 .post-grid-item:hover .post-grid-image {
    transform: scale(1.1);
}

#post-section-3 .post-grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    padding: 40px 20px 20px 20px; /* More padding at the bottom */
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%; /* Make overlay cover the entire item */
    box-sizing: border-box;
}

#post-section-3 .post-grid-item:hover .post-grid-overlay {
    opacity: 1;
    transform: translateY(0);
}

#post-section-3 .post-grid-categories {
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s; /* Delayed appearance */
}

#post-section-3 .post-grid-item:hover .post-grid-categories {
    opacity: 1;
    transform: translateY(0);
}

#post-section-3 .post-grid-category-badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.3em 0.6em;
    margin-right: 5px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#post-section-3 .post-grid-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0;
    color: #ffffff;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s; /* Further delayed appearance */
}

#post-section-3 .post-grid-item:hover .post-grid-title {
    opacity: 1;
    transform: translateY(0);
}

#post-section-3 .pagination-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    #post-section-3 .post-grid-item {
        height: 250px;
    }
    #post-section-3 .post-grid-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    #post-section-3 .post-grid-item {
        height: 220px;
        margin-bottom: 20px; /* Ensure spacing when stacked */
    }
    #post-section-3 .post-grid-title {
        font-size: 1rem;
    }
    #post-section-3 .section-header .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 575.98px) {
    #post-section-3 .post-grid-item {
        height: 200px;
    }
}




#timeline-3 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#timeline-3 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-3 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-3 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-3 .timeline-event-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4rem;
  position: relative;
}
#timeline-3 .timeline-event-row:last-child {
  margin-bottom: 0;
}
#timeline-3 .timeline-event-row:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: #dee2e6;
  top: 60px;
  bottom: -2rem;
  z-index: 1;
}
#timeline-3 .timeline-event-row.image-left::after {
  left: 50%;
  transform: translateX(-50%);
}
#timeline-3 .timeline-event-row.image-right::after {
  left: 50%;
  transform: translateX(-50%);
}
#timeline-3 .event-image-col {
  position: relative;
  z-index: 2;
}
#timeline-3 .event-image-col img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
#timeline-3 .event-content-col {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  z-index: 2;
  background-color: #f8f9fa;
  position: relative;
}
#timeline-3 .timeline-event-row.image-right .event-content-col {
}
#timeline-3 .event-year {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
}
#timeline-3 .event-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#timeline-3 .event-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #timeline-3 {
    padding-top: 4rem;
    padding-bottom: 1rem;
  }
  #timeline-3 .section-title {
    font-size: 2.1rem;
  }
  #timeline-3 .timeline-event-row {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  #timeline-3 .timeline-event-row:not(:last-child)::after {
    display: none;
  }
  #timeline-3 .event-image-col {
    margin-bottom: 1.5rem;
  }
  #timeline-3 .event-content-col {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
  }
  #timeline-3 .event-year {
    font-size: 1.5rem;
  }
  #timeline-3 .event-title {
    font-size: 1.2rem;
  }
  #timeline-3 .event-description {
    font-size: 0.95rem;
  }
}



#awards-9 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#awards-9 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#awards-9 .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-9 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#awards-9 .recognition-list-wrapper {
  max-width: 850px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.375rem;
  border: 1px solid #dee2e6;
}
#awards-9 .recognition-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#awards-9 .recognition-list-item {
  padding: 0.8rem 0;
  border-bottom: 1px dotted #e0e0e0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem 1rem;
}
#awards-9 .recognition-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#awards-9 .recognition-list.decoration-checkmark li,
#awards-9 .recognition-list.decoration-bullet li {
  padding-left: 1.75rem;
  position: relative;
}
#awards-9 .recognition-list.decoration-checkmark li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.6em;
  color: var(--bs-primary);
  font-size: 0.9em;
}
#awards-9 .recognition-list.decoration-bullet li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0.25rem;
  top: 0.7em;
  color: var(--bs-primary);
  font-size: 0.6em;
  opacity: 0.7;
}
#awards-9 .item-name {
  flex: 1 1 40%;
  min-width: 250px;
  font-size: 1rem;
  font-weight: 600;
  color: #343a40;
}
#awards-9 .item-name a {
  color: inherit;
  text-decoration: none;
}
#awards-9 .item-name a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
#awards-9 .item-body {
  flex: 1 1 30%;
  min-width: 150px;
  font-size: 0.9rem;
  color: #495057;
}
#awards-9 .item-year {
  flex: 0 0 100px;
  font-size: 0.9rem;
  color: #6c757d;
  text-align: right;
}
@media (max-width: 767.98px) {
  #awards-9 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #awards-9 .section-title {
    font-size: 1.9rem;
  }
  #awards-9 .recognition-list-wrapper {
    padding: 1.5rem;
  }
  #awards-9 .recognition-list-item {
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 0;
    align-items: flex-start;
  }
  #awards-9 .recognition-list.decoration-checkmark li,
  #awards-9 .recognition-list.decoration-bullet li {
    padding-left: 0;
  }
  #awards-9 .recognition-list.decoration-checkmark li::before,
  #awards-9 .recognition-list.decoration-bullet li::before {
    display: none;
  }
  #awards-9 .item-name {
    min-width: unset;
    flex-basis: auto;
  }
  #awards-9 .item-body {
    min-width: unset;
    flex-basis: auto;
  }
  #awards-9 .item-year {
    text-align: left;
    flex-basis: auto;
  }
}



#team-7 {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  overflow: hidden;
}
#team-7 .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
#team-7 .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-7 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-7 .stat-item {
  text-align: center;
  padding: 1rem;
}
#team-7 .stat-icon {
  margin-bottom: 1rem;
}
#team-7 .stat-icon i {
  font-size: 2.8rem;
  color: var(--bs-primary);
  opacity: 0.9;
}
#team-7 .stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #343a40;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
#team-7 .stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #team-7 .stat-number {
    font-size: 2.6rem;
  }
  #team-7 .stat-label {
    font-size: 0.95rem;
  }
}
@media (max-width: 767.98px) {
  #team-7 {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }
  #team-7 .section-title {
    font-size: 2rem;
  }
  #team-7 .stat-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }
  #team-7 .row > div:last-child .stat-item {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #team-7 .stat-number {
    font-size: 2.4rem;
  }
}



#press-mentions-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#press-mentions-11 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-11 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-11 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-11 .mention-card {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#press-mentions-11 .mention-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#press-mentions-11 .card-header {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  min-height: 70px;
}
#press-mentions-11 .source-logo img {
  height: 40px;
  width: auto;
  max-width: 150px;
  margin-right: 1rem;
  filter: grayscale(50%);
  opacity: 0.9;
}
#press-mentions-11 .source-name {
  font-weight: 600;
  color: #495057;
  font-size: 1rem;
}
#press-mentions-11 .card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#press-mentions-11 .mention-headline {
  font-size: 1.15rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#press-mentions-11 .mention-quote {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
/*
#press-mentions-11 .mention-quote {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
*/
#press-mentions-11 .card-footer {
  padding: 1rem 1.5rem;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#press-mentions-11 .article-date {
  font-size: 0.85rem;
  color: #6c757d;
}
#press-mentions-11 .article-link a {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--bs-primary);
}
#press-mentions-11 .article-link a:hover {
  text-decoration: underline;
}
#press-mentions-11 .article-link i {
  margin-left: 0.3rem;
}
@media (max-width: 767.98px) {
  #press-mentions-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #press-mentions-11 .section-title {
    font-size: 2.1rem;
  }
  #press-mentions-11 .card-header {
    padding: 0.75rem 1rem;
    min-height: 60px;
  }
  #press-mentions-11 .source-logo img {
    height: 30px;
  }
  #press-mentions-11 .source-name {
    font-size: 0.9rem;
  }
  #press-mentions-11 .card-body {
    padding: 1rem;
  }
  #press-mentions-11 .mention-headline {
    font-size: 1.05rem;
  }
  #press-mentions-11 .card-footer {
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  #press-mentions-11 .article-date {
    margin-bottom: 0.5rem;
  }
}



#why-choose-us-13 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
  text-align: center;
}
#why-choose-us-13 .section-header {
  margin-bottom: 3rem;
}
#why-choose-us-13 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#why-choose-us-13 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#why-choose-us-13 .feature-grid-item {
  margin-bottom: 2.5rem;
}
#why-choose-us-13 .feature-icon-large {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--bs-primary, #0d6efd);
  display: inline-block;
  transition: transform 0.3s ease-out;
}
#why-choose-us-13 .feature-grid-item:hover .feature-icon-large {
  transform: translateY(-5px) scale(1.1);
}
#why-choose-us-13 .feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #495057;
}
#why-choose-us-13 .feature-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  #why-choose-us-13 .section-header {
    margin-bottom: 2rem;
  }
  #why-choose-us-13 .feature-grid-item {
    margin-bottom: 2rem;
  }
  #why-choose-us-13 .feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #why-choose-us-13 .feature-title {
    font-size: 1.2rem;
  }
}



#counter-7 {
  padding: 80px 0;
  background-color: var(--section-bg-color, #ffffff);
}
#counter-7 .container {
  max-width: 1140px;
}
#counter-7 .section-header {
  margin-bottom: 60px;
  text-align: center;
}
#counter-7 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#counter-7 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
#counter-7 .counter-card-topicon {
  background-color: #ffffff;
  padding: 45px 25px 30px 25px;
  border-radius: 8px;
  text-align: center;
  margin-top: 35px;
  position: relative;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #e9ecef;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#counter-7 .counter-card-topicon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#counter-7 .icon-wrapper {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-color: var(--item-theme-color, #0d6efd);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#counter-7 .icon-wrapper i {
  font-size: 1.8rem;
  color: #ffffff;
}
#counter-7 .counter-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
  color: #343a40;
}
#counter-7 .counter-number {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
#counter-7 .counter-suffix {
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: 5px;
  line-height: 1;
}
#counter-7 .counter-title-card {
  font-size: 1.05rem;
  font-weight: 500;
  color: #6c757d;
}
@media (max-width: 991.98px) {
  #counter-7 .counter-card-topicon {
    margin-bottom: 45px;
  }
}
@media (max-width: 767.98px) {
  #counter-7 {
    padding: 50px 0;
  }
  #counter-7 .section-header h2 {
    font-size: 2rem;
  }
}



#faq-5 {
  padding: 60px 0;
  background-color: #ffffff;
}
#faq-5 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-5 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-5 .faq-item {
  display: flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
#faq-5 .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#faq-5 .faq-icon {
  font-size: 30px;
  color: #17a2b8;
  margin-right: 20px;
}
#faq-5 .faq-content {
  flex: 1;
}
#faq-5 .faq-question {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
#faq-5 .faq-answer {
  font-size: 14px;
  color: #6c757d;
}



#call-to-action-20 {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.cta-boxed-content {
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cta-boxed-headline {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}
.cta-boxed-subtext {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  opacity: 0.9;
}
.cta-boxed-button .btn {
  padding: 0.8rem 2rem;
  font-weight: 600;
}
.cta-boxed-button .btn i {
  margin-right: 8px;
}
#call-to-action-20 .btn-warning {
}
@media (max-width: 767.98px) {
  #call-to-action-20 {
    padding-top: 4rem;
    padding-bottom: 4rem;
    min-height: 350px;
  }
  .cta-boxed-content {
    padding: 1.5rem;
  }
  .cta-boxed-headline {
    font-size: 1.8rem;
  }
  .cta-boxed-subtext {
    font-size: 1rem;
  }
}


