
#hero-4 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#hero-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
#hero-4 .container {
  position: relative;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}
#hero-4 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-4 .hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



#overview-9 {
  overflow: hidden;
  background-color: #f8f9fa;
}
#overview-9 .overview-section-padding {
  padding-top: 4rem;
  padding-bottom: 5rem;
}
#overview-9 .timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}
#overview-9 .timeline-container::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--bs-primary);
  opacity: 0.3;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
#overview-9 .timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
#overview-9 .timeline-item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: #ffffff;
  border: 4px solid var(--bs-primary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}
#overview-9 .timeline-item.left {
  left: 0;
  padding-right: 30px;
}
#overview-9 .timeline-item.right {
  left: 50%;
  padding-left: 30px;
}
#overview-9 .timeline-item.left::after {
  right: -10px;
}
#overview-9 .timeline-item.right::after {
  left: -10px;
}
#overview-9 .timeline-content {
  padding: 20px 30px;
  background-color: white;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
#overview-9 .timeline-item.right .timeline-content {
  text-align: left;
}
#overview-9 .timeline-item.left .timeline-content {
  text-align: right;
}
#overview-9 .timeline-content .timeline-icon {
  font-size: 1.5rem;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  display: block;
}
#overview-9 .timeline-content .timeline-date {
  font-size: 0.85rem;
  color: #6c757d;
  display: block;
  margin-bottom: 0.25rem;
}
#overview-9 .timeline-content h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
#overview-9 .timeline-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  #overview-9 .timeline-container::after {
    left: 31px;
  }
  #overview-9 .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  #overview-9 .timeline-item.left,
  #overview-9 .timeline-item.right {
    left: 0%;
    text-align: left;
  }
  #overview-9 .timeline-item::after {
    left: 21px;
  }
  #overview-9 .timeline-item.right::after {
    left: 21px;
  }
  #overview-9 .timeline-content {
    text-align: left !important;
  }
}



/* === Section Base === */
.post-section {
  padding: 60px 0;
  background: #f7f7f7;
}
.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); }
}

/* === Flip Card === */
.flip-card {
  perspective: 1000px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back Faces */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.flip-card-front {
  background: #fff;
}
.flip-card-front img {
  width: 100%;
  display: block;
}
.flip-card-front .card-title {
  padding: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}
.flip-card-back {
  background: #fff;
  color: #333;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
}
.flip-card-back .excerpt {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.flip-card-back .meta {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.flip-card-back .btn-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  background: #007bff;
  color: #fff;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: background 0.3s;
}
.flip-card-back .btn-readmore i {
  margin-left: 0.5rem;
}
.flip-card-back .btn-readmore:hover {
  background: #0056b3;
}

/* === Pagination === */
.pagination-wrapper {
  text-align: center;
  margin-top: 40px;
}




#how-it-works-17 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f8f9fa;
}
#how-it-works-17 .section-title-container {
  margin-bottom: 40px;
}
#how-it-works-17 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}
#how-it-works-17 .section-main-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-17 .accordion-item {
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  margin-bottom: 10px;
  border-radius: 0.35rem;
}
#how-it-works-17 .accordion-item:first-of-type {
  border-top-left-radius: 0.35rem;
  border-top-right-radius: 0.35rem;
}
#how-it-works-17 .accordion-item:last-of-type {
  border-bottom-left-radius: 0.35rem;
  border-bottom-right-radius: 0.35rem;
}
#how-it-works-17 .accordion-header .accordion-button {
  font-size: 1.15rem;
  font-weight: 500;
  color: #212529;
  background-color: #f8f9fa;
  border-radius: 0;
  padding: 1rem 1.25rem;
  box-shadow: none;
  border-bottom: none;
}
#how-it-works-17 .accordion-header .accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: #e7f1ff;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}
#how-it-works-17 .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;
}
#how-it-works-17 .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='%230c63e4'%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);
}
#how-it-works-17 .accordion-body {
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #495057;
}
#how-it-works-17 .accordion-button-icon {
  margin-right: 10px;
  font-size: 1.1rem;
  color: #0d6efd;
}
#how-it-works-17 .accordion-button:not(.collapsed) .accordion-button-icon {
  color: #0c63e4;
}



#our-services-22 {
  padding: 80px 0;
  background-color: #fff;
}
#our-services-22 .services-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 4rem;
  font-size: 2.2rem;
}
#our-services-22 .service-block {
  margin-bottom: 5rem;
}
#our-services-22 .service-block:last-child {
  margin-bottom: 0;
}
#our-services-22 .service-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1rem 2rem;
}
#our-services-22 .service-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #0d6efd;
  margin-bottom: 1rem;
}
#our-services-22 .service-description {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#our-services-22 .service-features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
#our-services-22 .service-features-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  color: #343a40;
  font-size: 0.95rem;
}
#our-services-22 .service-features-list li i {
  color: #198754;
  margin-right: 10px;
  font-size: 1.1em;
}
#our-services-22 .btn-service-cta {
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  align-self: flex-start;
}
#our-services-22 .service-image-col {
  display: flex;
  align-items: center;
  justify-content: center;
}
#our-services-22 .service-block-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #our-services-22 .service-block {
    margin-bottom: 3.5rem;
  }
  #our-services-22 .service-image-col {
    margin-bottom: 2rem;
    order: 1 !important;
  }
  #our-services-22 .service-content-col {
    order: 2 !important;
    text-align: center;
    padding: 1rem;
  }
  #our-services-22 .service-features-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #our-services-22 .btn-service-cta {
    align-self: center;
  }
  #our-services-22 .service-block-image {
    max-width: 85%;
  }
}



#press-mentions-8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-8 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-8 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-8 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-8 .mention-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#press-mentions-8 .mention-logo {
  margin-bottom: 1.5rem;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#press-mentions-8 .mention-logo a {
  display: inline-block;
}
#press-mentions-8 .mention-logo img {
  max-height: 55px;
  max-width: 200px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-8 .mention-item:hover .mention-logo img {
  filter: grayscale(0%);
  opacity: 1;
}
#press-mentions-8 .mention-quote {
  font-size: 1.1rem;
  font-style: italic;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  width: 100%;
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid #eee;
}
#press-mentions-8 .mention-link {
  margin-top: auto;
}
#press-mentions-8 .mention-link a {
  font-size: 0.9rem;
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#press-mentions-8 .mention-link a:hover {
  text-decoration: underline;
}
#press-mentions-8 .mention-link i {
  margin-left: 0.3rem;
}
@media (max-width: 991.98px) {
  #press-mentions-8 .mention-quote {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  #press-mentions-8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #press-mentions-8 .section-title {
    font-size: 2.1rem;
  }
}



#timeline-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-20 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-20 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-20 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-20 .timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#timeline-20 .timeline-wrapper::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #e0e0e0;
  top: 15px;
  bottom: 15px;
  z-index: 1;
}
#timeline-20.content-right .timeline-wrapper::after {
  left: 21.5px;
  margin-left: -1.5px;
}
#timeline-20.content-left .timeline-wrapper::after {
  right: 21.5px;
  margin-right: -1.5px;
  left: auto;
}
#timeline-20 .timeline-item {
  padding: 0;
  position: relative;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
}
#timeline-20 .timeline-item:last-child {
  margin-bottom: 0;
}
#timeline-20 .timeline-marker-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--bs-primary);
  color: #ffffff;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px #ffffff;
  font-size: 1.2rem;
  order: 1;
}
#timeline-20.content-left .timeline-marker-icon {
  order: 3;
}
#timeline-20 .timeline-content {
  padding: 0.5rem 1.5rem;
  background-color: transparent;
  position: relative;
  order: 2;
  flex-grow: 1;
  margin-left: 1rem;
}
#timeline-20.content-left .timeline-content {
  margin-left: 0;
  margin-right: 1rem;
  text-align: right;
  order: 2;
}
#timeline-20 .timeline-date {
  font-weight: 600;
  color: #6c757d;
  margin-bottom: 0.25rem;
  display: block;
  font-size: 0.9rem;
}
#timeline-20 .timeline-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#timeline-20 .timeline-item-description {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}
#timeline-20 .timeline-item-description:last-child {
  margin-bottom: 0;
}
#timeline-20 .related-logo {
  margin-top: 0.5rem;
  text-align: inherit;
}
#timeline-20 .related-logo img {
  max-height: 30px;
  max-width: 100px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}
@media screen and (max-width: 575.98px) {
  #timeline-20 .timeline-wrapper::after {
    left: 21.5px;
    right: auto;
  }
  #timeline-20 .timeline-marker-icon {
    order: 1 !important;
  }
  #timeline-20 .timeline-content {
    order: 2 !important;
    margin-left: 1rem;
    margin-right: 0;
    text-align: left;
  }
  #timeline-20 .timeline-item-title {
    font-size: 1.05rem;
  }
  #timeline-20 .related-logo {
    text-align: left;
  }
}



#awards-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  overflow: hidden;
}
#awards-6 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#awards-6 .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#awards-6 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#awards-6 .badge-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 3rem;
}
#awards-6 .badge-item {
  text-align: center;
  flex-basis: 160px;
}
#awards-6 .badge-item a {
  display: inline-block;
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#awards-6 .badge-item a:hover {
  opacity: 1;
}
#awards-6 .badge-item img {
  max-width: 100%;
  height: auto;
  max-height: 65px;
  vertical-align: middle;
}
#awards-6 .badge-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2.5rem;
}
#awards-6 .badge-inline .badge-item {
  flex-basis: auto;
}
#awards-6 .badge-inline .badge-item img {
  max-height: 50px;
}
@media (max-width: 767.98px) {
  #awards-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #awards-6 .section-title {
    font-size: 1.9rem;
  }
  #awards-6 .badge-grid,
  #awards-6 .badge-inline {
    gap: 1.5rem 2rem;
  }
  #awards-6 .badge-item img {
    max-height: 55px;
  }
  #awards-6 .badge-inline .badge-item img {
    max-height: 40px;
  }
}



#team-4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#team-4 .content-wrapper {
  display: flex;
  align-items: center;
}
#team-4 .text-column {
  padding-right: 3rem;
}
#team-4 .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #212529;
}
#team-4 .section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bs-primary);
  margin-bottom: 1.5rem;
}
#team-4 .text-content p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#team-4 .text-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #343a40;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
#team-4 .text-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
  color: #495057;
}
#team-4 .text-content ul li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.5rem;
}
#team-4 .text-content ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--bs-primary);
  font-size: 0.9em;
}
#team-4 .cta-button .btn {
  padding: 0.75rem 1.8rem;
  font-weight: 500;
}
#team-4 .image-column img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #team-4 .text-column {
    padding-right: 1.5rem;
  }
  #team-4 .section-title {
    font-size: 2.1rem;
  }
}
@media (max-width: 767.98px) {
  #team-4 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-4 .content-wrapper {
    flex-direction: column;
  }
  #team-4 .image-column {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  #team-4 .image-column img {
    max-width: 90%;
  }
  #team-4 .text-column {
    padding-right: 0;
  }
}



#customer-support-11 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  color: #ffffff;
  background: #007bff;
  overflow: hidden;
}
#customer-support-11 .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
#customer-support-11 .section-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
#customer-support-11 .section-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}
#customer-support-11 .cta-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 2rem;
  border-radius: 0.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background-color 0.3s ease;
}
#customer-support-11 .cta-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#customer-support-11 .cta-icon i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  opacity: 0.9;
}
#customer-support-11 .cta-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #ffffff;
}
#customer-support-11 .cta-text {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
#customer-support-11 .btn-cta {
  padding: 0.7rem 1.5rem;
  font-weight: 500;
  margin-top: auto;
  width: 80%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
#customer-support-11 .btn-cta.btn-light {
  color: #0056b3;
}
#customer-support-11 .btn-cta.btn-light:hover {
  background-color: #f8f9fa;
  color: #003d80;
}
@media (max-width: 991.98px) {
  #customer-support-11 .cta-title {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  #customer-support-11 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #customer-support-11 .section-header {
    margin-bottom: 3rem;
  }
  #customer-support-11 .section-title {
    font-size: 2.1rem;
  }
  #customer-support-11 .section-subtitle {
    font-size: 1.1rem;
  }
  #customer-support-11 .cta-card {
    padding: 1.5rem;
  }
  #customer-support-11 .btn-cta {
    width: 90%;
  }
}



#faq-11 {
  padding: 60px 0;
  background-color: #fff;
}
#faq-11 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
  color: #212529;
}
#faq-11 .accordion-item {
  border: 1px solid #e9ecef;
  border-radius: 0.5rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
#faq-11 .accordion-header {
}
#faq-11 .accordion-button {
  font-weight: 600;
  color: #343a40;
  background-color: #f8f9fa;
  padding: 1.2rem 1.5rem;
  border: none;
  box-shadow: none !important;
}
#faq-11 .accordion-button:not(.collapsed) {
  color: #0d6efd;
  background-color: #e7f1ff;
}
#faq-11 .accordion-button::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\");
  transition: transform 0.2s ease-in-out;
}
#faq-11 .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);
}
#faq-11 .accordion-body {
  padding: 1.5rem;
  line-height: 1.7;
  color: #495057;
  background-color: #fff;
}
#faq-11 .accordion-body p:last-child {
  margin-bottom: 0;
}



#call-to-action-18 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  color: #ffffff;
}
#call-to-action-18.bg-gradient {
  background: linear-gradient(
    135deg,
    var(--cta18-bg-start, #0d6efd),
    var(--cta18-bg-end, #6f42c1)
  );
}
#call-to-action-18.bg-solid {
  background-color: var(--cta18-bg-start, #f8f9fa);
  color: #212529;
}
#call-to-action-18.bg-solid .cta-simple-subtext {
  color: #6c757d;
}
#call-to-action-18.bg-solid .cta-simple-button .btn-primary {
}
.cta-simple-content {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-simple-headline {
  font-size: calc(1.5rem + 1.5vw);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cta-simple-headline {
    font-size: 2.8rem;
  }
}
.cta-simple-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}
.cta-simple-button .btn {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-simple-button .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.cta-simple-button .btn i {
  margin-right: 8px;
}


