
#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;
  }
}



/* Container */
#category-posts-25 {
  padding: 80px 20px;
  background: #f9fafb;
}
#category-posts-25 .section-header {
  text-align: center;
  margin-bottom: 40px;
}
#category-posts-25 .section-title {
  font-size: 2rem;
  font-weight: 600;
}
#category-posts-25 .section-subtitle {
  font-size: 1rem;
  color: #555;
  margin-top: .5rem;
}

/* Mosaic grid */
#category-posts-25 .mosaic-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 200px 200px;
  grid-template-areas:
    "large small1 small2"
    "large small3 small4";
  gap: 1rem;
}
@media (max-width: 992px) {
  #category-posts-25 .mosaic-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 200px);
    grid-template-areas:
      "large large"
      "small1 small2"
      "small3 small4";
  }
}
@media (max-width: 576px) {
  #category-posts-25 .mosaic-grid {
    display: block;
  }
}

/* Card base */
#category-posts-25 .mosaic-card {
  position: relative;
  overflow: hidden;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform .3s ease;
}
#category-posts-25 .mosaic-card:hover {
  transform: translateY(-5px);
}

/* Positioning */
#category-posts-25 .mosaic-card-1 { grid-area: large; }
#category-posts-25 .mosaic-card-2 { grid-area: small1; }
#category-posts-25 .mosaic-card-3 { grid-area: small2; }
#category-posts-25 .mosaic-card-4 { grid-area: small3; }
#category-posts-25 .mosaic-card-5 { grid-area: small4; }

/* Image fill */
#category-posts-25 .mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
#category-posts-25 .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
  text-align: left;
}
#category-posts-25 .mosaic-card:hover .overlay {
  opacity: 1;
}

/* Overlay content */
#category-posts-25 .overlay h3 {
  font-size: 1.125rem;
  margin: 0 0 .5rem;
}
#category-posts-25 .overlay .meta {
  font-size: .875rem;
  margin-bottom: .75rem;
}
#category-posts-25 .overlay .meta i {
  margin-right: .25rem;
}

/* Read More button */
#category-posts-25 .btn-readmore {
  display: inline-flex;
  align-items: center;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  border: 1px solid #fff;
  border-radius: .5rem;
  padding: .4rem .75rem;
  transition: background .3s ease, color .3s ease;
}
#category-posts-25 .btn-readmore:hover {
  background: #fff;
  color: #333;
}
#category-posts-25 .btn-readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-25 .btn-readmore:hover i {
  transform: translateX(3px);
}

/* Pagination & Load More */
#category-posts-25 .pagination-wrapper,
#category-posts-25 .load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}




#content-block-21 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#content-block-21 .section-header {
  margin-bottom: 2rem;
  text-align: center;
}
#content-block-21 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.75rem;
}
#content-block-21 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#content-block-21 .carousel {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#content-block-21 .carousel-inner {
  border-radius: 0.5rem;
}
#content-block-21 .carousel-item img {
  width: 100%;
  object-fit: cover;
  display: block;
}
#content-block-21 .carousel-caption {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0.25rem;
  padding: 0.75rem 1rem;
  bottom: 1.25rem;
  left: 5%;
  right: 5%;
}
#content-block-21 .carousel-caption h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
#content-block-21 .carousel-caption p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}
#content-block-21 .carousel-control-prev-icon,
#content-block-21 .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  padding: 0.75rem;
  background-size: 50% 50%;
}
#content-block-21 .carousel-indicators [data-bs-target] {
  background-color: rgba(255, 255, 255, 0.7);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  margin: 0 5px;
}
#content-block-21 .carousel-indicators .active {
  background-color: #fff;
}
@media (max-width: 767.98px) {
  #content-block-21 .carousel-caption {
    padding: 0.5rem 0.75rem;
  }
  #content-block-21 .carousel-caption h5 {
    font-size: 1rem;
  }
  #content-block-21 .carousel-caption p {
    font-size: 0.85rem;
  }
}



#faq-8 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-8 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-8 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-8 .faq-item {
  margin-bottom: 40px;
}
#faq-8 .faq-question {
  font-size: 20px;
  font-weight: bold;
  color: #17a2b8;
  cursor: pointer;
  margin-bottom: 15px;
}
#faq-8 .faq-image {
  display: none;
  margin-top: 10px;
}
#faq-8 .faq-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #faq-8 .faq-image img {
    height: auto;
  }
}



#timeline-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
  overflow: hidden;
}
#timeline-6 .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
#timeline-6 .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-6 .section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-6 .timeline-list-minimal {
  list-style: none;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}
#timeline-6 .timeline-list-item {
  display: flex;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f1f1;
}
#timeline-6 .timeline-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#timeline-6 .item-icon {
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-right: 1rem;
  margin-top: 2px;
}
#timeline-6 .item-icon i {
  font-size: 1.3rem;
  color: var(--bs-primary);
  opacity: 0.8;
}
#timeline-6 .item-content {
  flex-grow: 1;
}
#timeline-6 .item-date {
  font-weight: 600;
  font-size: 0.95rem;
  color: #343a40;
  display: block;
  margin-bottom: 0.25rem;
}
#timeline-6 .item-text {
  font-size: 0.95rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #timeline-6 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #timeline-6 .section-title {
    font-size: 1.9rem;
  }
  #timeline-6 .timeline-list-item {
    padding: 0.8rem 0;
  }
  #timeline-6 .item-icon {
    width: 30px;
    margin-right: 0.75rem;
  }
  #timeline-6 .item-icon i {
    font-size: 1.1rem;
  }
}



#team-8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-8 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-8 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-8 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-8 .team-card-topimg {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.07);
  transition: box-shadow 0.3s ease;
}
#team-8 .team-card-topimg:hover {
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.1);
}
#team-8 .member-image-top {
  position: relative;
  width: 100%;
  padding-top: 80%;
}
#team-8 .member-image-top img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#team-8 .member-card-body {
  padding: 1.25rem 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#team-8 .member-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0.2rem;
}
#team-8 .member-role {
  font-size: 0.9rem;
  color: var(--bs-primary);
  font-weight: 500;
  margin-bottom: 0.75rem;
}
#team-8 .member-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex-grow: 1;
  /*
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.5 * 0.9rem * 2); 
    /* */
}
#team-8 .member-social-links {
  margin-top: auto;
  padding-top: 0.5rem;
}
#team-8 .member-social-links a {
  display: inline-block;
  color: #adb5bd;
  margin: 0 0.4rem;
  font-size: 1rem;
  transition: color 0.3s ease;
}
#team-8 .member-social-links a:hover {
  color: var(--bs-primary);
}
@media (max-width: 767.98px) {
  #team-8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-8 .section-title {
    font-size: 2.1rem;
  }
  #team-8 .member-name {
    font-size: 1.1rem;
  }
  #team-8 .member-card-body {
    padding: 1rem 1.25rem;
  }
}



#press-mentions-13 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#press-mentions-13 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#press-mentions-13 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#press-mentions-13 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#press-mentions-13 .category-block {
  margin-bottom: 3.5rem;
}
#press-mentions-13 .category-block:last-child {
  margin-bottom: 0;
}
#press-mentions-13 .category-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dee2e6;
  display: inline-flex;
  align-items: center;
}
#press-mentions-13 .category-title i {
  margin-right: 0.8rem;
  font-size: 1.4rem;
  color: var(--bs-primary);
}
#press-mentions-13 .mention-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}
#press-mentions-13 .category-block .mention-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#press-mentions-13 .mention-logo {
  flex-shrink: 0;
  width: 100px;
  margin-right: 1.5rem;
  text-align: center;
}
#press-mentions-13 .mention-logo img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
}
#press-mentions-13 .mention-item:hover .mention-logo img {
  filter: grayscale(0%);
  opacity: 1;
  transition: filter 0.3s ease, opacity 0.3s ease;
}
#press-mentions-13 .mention-logo-placeholder {
  width: 100px;
  height: 40px;
  background-color: #f8f9fa;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}
#press-mentions-13 .mention-logo-placeholder i {
  color: #adb5bd;
  font-size: 1.5rem;
}
#press-mentions-13 .mention-content {
  flex-grow: 1;
}
#press-mentions-13 .mention-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.3rem;
}
#press-mentions-13 .mention-headline a {
  color: inherit;
  text-decoration: none;
}
#press-mentions-13 .mention-headline a:hover {
  color: var(--bs-primary);
  text-decoration: underline;
}
#press-mentions-13 .mention-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: #495057;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  border-left: 3px solid #e0e0e0;
}
#press-mentions-13 .mention-meta {
  font-size: 0.85rem;
  color: #6c757d;
}
#press-mentions-13 .mention-meta .publication {
  font-weight: 500;
}
#press-mentions-13 .mention-meta .separator {
  margin: 0 0.4rem;
  opacity: 0.7;
}
#press-mentions-13 .mention-meta .read-more a {
  color: var(--bs-primary);
  text-decoration: none;
  font-weight: 500;
}
#press-mentions-13 .mention-meta .read-more a:hover {
  text-decoration: underline;
}
@media (max-width: 767.98px) {
  #press-mentions-13 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #press-mentions-13 .section-title {
    font-size: 2.1rem;
  }
  #press-mentions-13 .category-title {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
  #press-mentions-13 .mention-item {
    padding: 1rem 0;
    flex-direction: column;
  }
  #press-mentions-13 .mention-logo,
  #press-mentions-13 .mention-logo-placeholder {
    margin-right: 0;
    margin-bottom: 1rem;
    width: auto;
    text-align: left;
  }
  #press-mentions-13 .mention-headline {
    font-size: 1rem;
  }
}



#customer-support-2 {
  text-align: center;
  background: #ffffff;
  padding: 80px 0;
}
#customer-support-2 .support-content {
  max-width: 800px;
  margin: 0 auto;
}
#customer-support-2 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #222;
}
#customer-support-2 p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 40px;
}
#customer-support-2 .faq-container {
  max-width: 700px;
  margin: auto;
  text-align: left;
}
#customer-support-2 .faq-item {
  background: #f9f9f9;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#customer-support-2 .faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background: #007bff;
  color: white;
  transition: background 0.3s ease-in-out;
}
#customer-support-2 .faq-header:hover {
  background: #0056b3;
}
#customer-support-2 .faq-header i {
  font-size: 1.5rem;
}
#customer-support-2 .faq-content {
  display: none;
  padding: 15px 20px;
  background: white;
  color: #444;
  font-size: 1rem;
  border-top: 1px solid #ddd;
}
#customer-support-2 .faq-item.active .faq-content {
  display: block;
}



#call-to-action-7 {
  padding: 60px 20px;
  background-color: #f8f9fa;
  color: #333;
}
#call-to-action-7 .cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
#call-to-action-7 .cta-text {
  flex: 1 1 300px;
  text-align: left;
}
#call-to-action-7 .cta-text h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
#call-to-action-7 .cta-text p {
  font-size: 16px;
  margin-bottom: 20px;
}
#call-to-action-7 .cta-btn {
  padding: 10px 25px;
  background-color: #17a2b8;
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s;
}
#call-to-action-7 .cta-btn:hover {
  background-color: #138496;
}
#call-to-action-7 .cta-image {
  flex: 1 1 300px;
  text-align: center;
}
#call-to-action-7 .cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 767.98px) {
  #call-to-action-7 .cta-container {
    flex-direction: column;
    text-align: center;
  }
  #call-to-action-7 .cta-text {
    text-align: center;
  }
}



#offers-14 {
  padding: 80px 0;
  background-color: #e6f4ea;
}
#offers-14 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
  color: #146c43;
}
#offers-14 .cashback-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#offers-14 .cashback-icon {
  font-size: 8rem;
  opacity: 0.8;
}
#offers-14 .cashback-image {
  max-width: 70%;
  height: auto;
}
#offers-14 .cashback-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#offers-14 .cashback-headline {
  font-weight: 700;
  font-size: 2rem;
  color: #198754;
  margin-bottom: 1rem;
  line-height: 1.3;
}
#offers-14 .cashback-description {
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
#offers-14 .cashback-details-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
#offers-14 .cashback-details-list li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  color: #343a40;
  font-size: 0.95rem;
}
#offers-14 .cashback-details-list li i {
  margin-right: 10px;
  margin-top: 4px;
  color: #0d6efd;
  width: 18px;
  text-align: center;
}
#offers-14 .btn-cashback-cta {
  padding: 0.8rem 2rem;
  font-weight: 600;
  align-self: flex-start;
}
@media (max-width: 767.98px) {
  #offers-14 .cashback-visual-col {
    margin-bottom: 2rem;
  }
  #offers-14 .cashback-details-col {
    text-align: center;
  }
  #offers-14 .cashback-details-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #offers-14 .btn-cashback-cta {
    align-self: center;
  }
  #offers-14 .cashback-icon {
    font-size: 6rem;
  }
}


