
#hero-11 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 65vh;
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  text-align: left;
  color: #ffffff;
  --hero-overlay-color: rgba(0, 0, 0, 0.5);
}
#hero-11::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--hero-overlay-color);
  z-index: 1;
}
#hero-11 .container {
  position: relative;
  z-index: 2;
}
#hero-11 .hero-content-wrapper-11 {
  max-width: 650px;
  margin-left: 0;
  margin-right: auto;
}
#hero-11 .hero-title-11 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
}
#hero-11 .hero-subtitle-11 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#hero-11 .hero-cta-button-11 {
  display: inline-block;
  padding: 0.8rem 2.1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-11 .hero-cta-button-11:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767.98px) {
  #hero-11 {
    min-height: 60vh;
    padding: 4rem 0;
    text-align: center;
    justify-content: center;
  }
  #hero-11 .hero-content-wrapper-11 {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
  }
  #hero-11 .hero-title-11 {
    font-size: 2.4rem;
  }
  #hero-11 .hero-subtitle-11 {
    font-size: 1.1rem;
  }
}



#about-us-3 {
  padding: 60px 15px;
  max-width: 1000px;
  margin: 0 auto;
}
#about-us-3 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#about-us-3 .columns {
  display: flex;
  gap: 30px;
}
#about-us-3 .left-column {
  flex: 2;
  background: #fff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
  white-space: pre-wrap;
}
#about-us-3 .right-column {
  flex: 1;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.95rem;
  color: #333;
  line-height: 1.8;
}
#about-us-3 .right-column h4 {
  margin-top: 0;
  color: #007bff;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  #about-us-3 .columns {
    flex-direction: column;
  }
}



#features-18 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-18']['bg_color'] ?? '#f8f9fa' }};
}
#features-18 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-18 .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-18 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-18 .feature-row {
  margin-bottom: 60px; 
}
#features-18 .feature-row:last-child {
  margin-bottom: 0;
}
#features-18 .feature-content h3 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 20px;
  color: #343a40;
}
#features-18 .feature-content p {
  color: #6c757d;
  margin-bottom: 20px;
  line-height: 1.7;
}
#features-18 .feature-content ul {
  list-style: none;
  padding: 0;
}
#features-18 .feature-content ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: flex-start;
  color: #495057;
}
#features-18 .feature-content ul i {
  font-size: 18px;
  color: var(--bs-primary, #0d6efd);
  margin-right: 8px;
  flex-shrink: 0;
  line-height: 1.4;
  margin-top: 4px; 
}
#features-18 .feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
@media (max-width: 991.98px) {
  #features-18 .feature-image {
    text-align: center;
    margin-bottom: 30px; 
  }
  #features-18 .feature-content {
     text-align: center; 
   }
   #features-18 .feature-content ul {
     display: inline-block; 
     text-align: left;
   }
}
@media (max-width: 767.98px) {
  #features-18 .section-title h2 {
    font-size: 28px;
  }
  #features-18 .feature-content h3 {
    font-size: 24px;
  }
}



#counter-10 {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    var(--gradient-start, #4a00e0),
    var(--gradient-end, #8e2de2)
  );
  color: var(--text-color, #ffffff);
  text-align: center;
  overflow: hidden;
}
#counter-10 .container {
  position: relative;
  z-index: 2;
}
#counter-10 .section-header {
  margin-bottom: 60px;
}
#counter-10 .section-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-color, #ffffff);
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
#counter-10 .section-header p {
  font-size: 1.15rem;
  color: var(--text-color, #ffffff);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}
#counter-10 .counter-item-floating {
  padding: 20px;
  margin-bottom: 30px;
  position: relative;
}
#counter-10 .floating-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: inline-block;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-out;
  animation: floatAnimation 4s ease-in-out infinite;
}
#counter-10 .counter-item-floating:hover .floating-icon {
  transform: scale(1.1) translateY(-5px);
  animation-play-state: paused;
}
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
#counter-10 .counter-value-wrapper {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-bottom: 10px;
  color: var(--text-color, #ffffff);
}
#counter-10 .counter-number {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}
#counter-10 .counter-suffix {
  font-size: 2rem;
  font-weight: 600;
  margin-left: 6px;
  line-height: 1;
  opacity: 0.9;
}
#counter-10 .counter-title-floating {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-color, #ffffff);
  opacity: 0.85;
}
@media (max-width: 991.98px) {
  #counter-10 .counter-number {
    font-size: 2.8rem;
  }
  #counter-10 .counter-suffix {
    font-size: 1.8rem;
  }
  #counter-10 .floating-icon {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  #counter-10 {
    padding: 60px 0;
  }
  #counter-10 .section-header h2 {
    font-size: 2.2rem;
  }
  #counter-10 .counter-item-floating {
    margin-bottom: 40px;
  }
  #counter-10 .counter-item-floating:last-child {
    margin-bottom: 0;
  }
}



#our-services-19 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #f8f9fa;
}
#our-services-19 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#our-services-19 .section-header h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}
#our-services-19 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
}
#our-services-19 .process-flow-row {
  position: relative;
}
#our-services-19 .step-item {
  text-align: center;
  padding: 1rem;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  #our-services-19 .step-item:not(:last-child)::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 25%;
    right: -20px;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #adb5bd;
    z-index: 1;
  }
  #our-services-19 .step-item {
    margin-bottom: 0;
  }
}
#our-services-19 .step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--bs-primary, #0d6efd);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
  transition: transform 0.3s ease;
}
#our-services-19 .step-item:hover .step-icon {
  transform: scale(1.1);
}
#our-services-19 .step-icon i {
  font-size: 1.75rem;
}
#our-services-19 .step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #495057;
}
#our-services-19 .step-description {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.5;
}
@media (max-width: 767.98px) {
  #our-services-19 .step-item:not(:last-child)::after {
    display: none;
  }
  /* #our-services-19 .process-flow-row::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #e9ecef;
    top: 35px; // Start below first icon
    bottom: 35px; // End above last icon base
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
   }
    #our-services-19 .step-item { z-index: 1; background-color: #f8f9fa; } // Ensure item is above line */
}



#why-choose-us-17 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fff;
}
#why-choose-us-17 .section-header {
  margin-bottom: 3rem;
  text-align: center;
}
#why-choose-us-17 .section-header h2 {
  font-weight: 700;
  color: #343a40;
}
#why-choose-us-17 .intro-text-column h3 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #495057;
}
#why-choose-us-17 .intro-text-column p {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin-bottom: 0;
}
#why-choose-us-17 .accordion {
  border: none;
}
#why-choose-us-17 .accordion-item {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
#why-choose-us-17 .accordion-item:last-child {
  margin-bottom: 0;
}
#why-choose-us-17 .accordion-header {
}
#why-choose-us-17 .accordion-button {
  font-weight: 600;
  background-color: #f8f9fa;
  border-radius: 0 !important;
}
#why-choose-us-17 .accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background-color: #e7f1ff;
  box-shadow: none;
}
#why-choose-us-17 .accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  z-index: 3;
}
#why-choose-us-17 .accordion-button i {
  margin-right: 0.75rem;
  color: var(--bs-secondary);
  min-width: 1.25em;
}
#why-choose-us-17 .accordion-button:not(.collapsed) i {
  color: var(--bs-primary);
}
#why-choose-us-17 .accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6c757d;
  background-color: #fff;
}
@media (max-width: 767.98px) {
  #why-choose-us-17 .intro-text-column {
    margin-bottom: 2rem;
    text-align: center;
  }
  #why-choose-us-17 .intro-text-column h3 {
    font-size: 1.5rem;
  }
}



#testimonials-3 {
  padding: 60px 15px;
  max-width: 800px;
  margin: 0 auto;
}
#testimonials-3 .slider-container {
  position: relative;
  overflow: hidden;
  height: 300px;
}
#testimonials-3 .slider-item {
  display: none;
  text-align: center;
  padding: 30px;
}
#testimonials-3 .slider-item.active {
  display: block;
}
#testimonials-3 .slider-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}
#testimonials-3 .slider-item p {
  font-size: 1.1rem;
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}
#testimonials-3 .client-info {
  font-size: 0.95rem;
  color: #777;
}



/* 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;
    }
}




#how-it-works-1 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#how-it-works-1 .section-hero {
  background-size: cover;
  background-position: center;
  padding: 80px 15px;
  border-radius: 8px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
#how-it-works-1 .timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
#how-it-works-1 .timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #ddd;
}
#how-it-works-1 .timeline-item {
  position: relative;
  margin-left: 70px;
  margin-bottom: 30px;
  padding: 10px 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
#how-it-works-1 .timeline-item::before {
  content: attr(data-step);
  position: absolute;
  left: -40px;
  top: 10px;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
}
#how-it-works-1 .timeline-item h4 {
  margin: 0 0 5px;
  font-size: 1.25rem;
  color: #007bff;
}
#how-it-works-1 .timeline-item p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}



#offers-5 {
  padding: 80px 0;
  background-color: #fff;
}
#offers-5 .offer-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-size: 2rem;
}
#offers-5 .offer-details-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 1rem;
}
#offers-5 .offer-details-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}
#offers-5 .offer-details-description {
  color: #495057;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
#offers-5 .offer-terms-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: #555;
}
#offers-5 .offer-terms-list li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}
#offers-5 .offer-terms-list li i {
  margin-right: 8px;
  margin-top: 4px;
  font-size: 0.8em;
  color: #0d6efd;
}
#offers-5 .offer-details-code {
  margin-bottom: 0.5rem;
  min-height: 25px;
}
#offers-5 .offer-details-code strong {
  margin-right: 5px;
}
#offers-5 .offer-details-code span {
  font-weight: 700;
  color: #dc3545;
  background-color: #f8d7da;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.95rem;
}
#offers-5 .offer-details-expiry {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 2rem;
  min-height: 20px;
}
#offers-5 .offer-details-expiry i {
  margin-right: 5px;
}
#offers-5 .btn-split-offer-cta {
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  align-self: flex-start;
}
#offers-5 .offer-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#offers-5 .offer-split-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  #offers-5 .offer-details-col,
  #offers-5 .offer-visual-col {
    text-align: center;
  }
  #offers-5 .offer-terms-list {
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  #offers-5 .btn-split-offer-cta {
    align-self: center;
  }
  #offers-5 .offer-visual-col {
    margin-bottom: 2rem;
  }
}



#faq-14 {
  padding: 60px 0;
}
#faq-14 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-14 .faq-sidebar {
  position: sticky;
  top: 80px;
  height: calc(100vh - 100px);
  overflow-y: auto;
}
#faq-14 .faq-sidebar .nav-link {
  color: #495057;
  padding: 0.6rem 1rem;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
#faq-14 .faq-sidebar .nav-link:hover {
  color: #0d6efd;
  background-color: #f1f5f9;
  border-left-color: #cfe2ff;
}
#faq-14 .faq-sidebar .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
  background-color: #e7f1ff;
  border-left-color: #0d6efd;
}
#faq-14 .faq-content-area {
}
#faq-14 .faq-content-item {
  margin-bottom: 2.5rem;
  padding-top: 1rem;
}
#faq-14 .faq-content-item h5 {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.8rem;
}
#faq-14 .faq-content-item p {
  color: #495057;
  line-height: 1.7;
}
#faq-14 .faq-content-item p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #faq-14 .faq-sidebar {
    position: static;
    height: auto;
    margin-bottom: 2rem;
    overflow-y: visible;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
  }
  #faq-14 .faq-sidebar .nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  #faq-14 .faq-sidebar .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
  #faq-14 .faq-sidebar .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: #0d6efd;
    background-color: transparent;
  }
  #faq-14 .faq-sidebar .nav-link:hover {
    border-left-color: transparent;
    border-bottom-color: #cfe2ff;
    background-color: transparent;
  }
}



#call-to-action-17 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
#call-to-action-17 .cta-split-container {
}
#call-to-action-17 .cta-split-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#call-to-action-17 .cta-split-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-height: 450px;
  object-fit: cover;
}
#call-to-action-17 .cta-split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
#call-to-action-17 .cta-split-headline {
  font-weight: 700;
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}
#call-to-action-17 .cta-split-subtext {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.7;
}
#call-to-action-17 .cta-split-button .btn {
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
#call-to-action-17 .cta-split-button .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}
#call-to-action-17 .cta-split-button .btn i {
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  #call-to-action-17 .cta-split-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    margin-top: 2rem;
  }
  #call-to-action-17 .cta-split-headline {
    font-size: 1.8rem;
  }
  #call-to-action-17 .cta-split-button {
    margin-top: 1rem;
  }
  #call-to-action-17 .cta-split-image {
    max-height: 400px;
  }
}
@media (max-width: 767.98px) {
  #call-to-action-17 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #call-to-action-17 .cta-split-content {
    margin-top: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
  #call-to-action-17 .cta-split-image {
    max-height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
}


