
#hero-12 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 6rem 0 8rem 0;
  text-align: center;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
#hero-12 .container {
  position: relative;
}
#hero-12 .hero-content-wrapper-12 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#hero-12 .hero-title-12 {
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
#hero-12 .hero-subtitle-12 {
  font-size: 1.15rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.95;
}
#hero-12 .hero-cta-button-12 {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease;
  background-color: #0d6efd;
  color: #ffffff;
}
#hero-12 .hero-cta-button-12:hover {
  transform: translateY(-3px);
}
@media (max-width: 767.98px) {
  #hero-12 {
    min-height: 60vh;
    padding: 4rem 0 6rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  }
  #hero-12 .hero-title-12 {
    font-size: 2.4rem;
  }
  #hero-12 .hero-subtitle-12 {
    font-size: 1.1rem;
  }
}



#mobile-app-11 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#mobile-app-11 .app-intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#mobile-app-11 .app-intro-title {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}
#mobile-app-11 .app-intro-description {
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}
#mobile-app-11 .app-download-buttons .btn-download-app {
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  margin-right: 1rem;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#mobile-app-11 .btn-download-app:hover {
  background-color: #333;
  transform: translateY(-2px);
}
#mobile-app-11 .btn-download-app i {
  font-size: 1.8em;
  margin-right: 10px;
}
#mobile-app-11 .btn-download-app .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
#mobile-app-11 .btn-download-app .button-text span:first-child {
  font-size: 0.8em;
}
#mobile-app-11 .btn-download-app .button-text span:last-child {
  font-size: 1.1em;
  font-weight: 600;
}
#mobile-app-11 .app-image-container {
  text-align: center;
}
#mobile-app-11 .mobile-app-image {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
@media (min-width: 768px) {
  #mobile-app-11 .app-image-container {
    text-align: right;
  }
  #mobile-app-11 .mobile-app-image {
    max-width: 100%;
  }
  #mobile-app-11 .app-intro-content {
    align-items: flex-start;
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  #mobile-app-11 .app-download-buttons {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  #mobile-app-11 .app-download-buttons .btn-download-app {
    margin-right: 0;
    justify-content: center;
    width: 100%;
  }
  #mobile-app-11 .app-intro-content {
    align-items: center;
    text-align: center;
  }
}



#features-20 {
  padding: 60px 0;
  overflow: hidden;
  background-color: {{ $data['features-20']['bg_color'] ?? '#f8f9fa' }};
}
#features-20 .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #343a40;
}
#features-20 .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-20 .section-title p {
  margin-bottom: 40px;
  color: #6c757d;
}
#features-20 .step-item {
  position: relative;
  padding-left: 80px; 
  margin-bottom: 40px; 
  min-height: 60px; 
}
#features-20 .step-number {
  position: absolute;
  left: 0;
  top: 0; 
  font-size: 48px; 
  font-weight: 700;
  color: var(--bs-primary-light, #e0e0e0); 
  line-height: 1;
  z-index: 1;
  transition: color 0.3s ease;
}
#features-20 .step-item:hover .step-number {
    color: var(--bs-primary, #0d6efd); 
}
#features-20 .step-content {
   position: relative;
   z-index: 2;
}
#features-20 .step-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}
#features-20 .step-content p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #features-20 .section-title h2 {
    font-size: 28px;
  }
  #features-20 .step-item {
    padding-left: 65px; 
    min-height: 50px;
  }
  #features-20 .step-number {
    font-size: 40px; 
  }
  #features-20 .step-content h4 {
    font-size: 18px;
  }
   #features-20 .step-content p {
     font-size: 15px;
   }
}
@media (max-width: 575.98px) {
   #features-20 .step-item {
     padding-left: 0; 
     padding-top: 55px; 
     text-align: center; 
   }
   #features-20 .step-number {
     left: 50%; 
     transform: translateX(-50%);
     top: 0;
   }
}



#how-it-works-18 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}
#how-it-works-18 .section-title-container {
  margin-bottom: 50px;
}
#how-it-works-18 .section-main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
}
#how-it-works-18 .section-main-subtitle {
  font-size: 1.1rem;
  color: #7f8c8d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-18 .checklist-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
#how-it-works-18 .checklist-item {
  display: flex;
  align-items: flex-start;
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
#how-it-works-18 .checklist-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
#how-it-works-18 .checklist-icon {
  font-size: 1.8rem;
  color: #28a745;
  margin-right: 20px;
  min-width: 30px;
  padding-top: 3px;
}
#how-it-works-18 .checklist-content .checklist-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 8px;
}
#how-it-works-18 .checklist-content .checklist-description {
  font-size: 0.95rem;
  color: #5a6778;
  line-height: 1.6;
}
@media (max-width: 575.98px) {
  #how-it-works-18 .checklist-item {
    padding: 15px;
  }
  #how-it-works-18 .checklist-icon {
    font-size: 1.5rem;
    margin-right: 15px;
  }
  #how-it-works-18 .checklist-content .checklist-title {
    font-size: 1.1rem;
  }
}



#testimonials-15 {
  padding: 80px 0;
  background-color: #ffffff;
}
#testimonials-15 .container {
  max-width: 1140px;
}
#testimonials-15 .section-header {
  margin-bottom: 50px;
  text-align: center;
}
#testimonials-15 .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 15px;
}
#testimonials-15 .section-header p {
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
#testimonials-15 .testimonial-bubble-wall {
  column-gap: var(--column-gap, 1.5rem);
  column-count: var(--column-count-sm, 1);
}
#testimonials-15 .testimonial-bubble {
  display: inline-block;
  width: 100%;
  background-color: var(--bubble-bg-color, #f8f9fa);
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: var(--column-gap, 1.5rem);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  page-break-inside: avoid;
  break-inside: avoid;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonials-15 .testimonial-bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
#testimonials-15 .bubble-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
#testimonials-15 .bubble-image img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}
#testimonials-15 .bubble-client-name {
  font-weight: 600;
  color: #343a40;
  font-size: 0.95rem;
}
#testimonials-15 .bubble-message {
  font-size: 1rem;
  color: #495057;
  line-height: 1.6;
}
@media (min-width: 768px) {
  #testimonials-15 .testimonial-bubble-wall {
    column-count: var(--column-count-md, 2);
  }
}
@media (min-width: 992px) {
  #testimonials-15 .testimonial-bubble-wall {
    column-count: var(--column-count-lg, 3);
  }
}
@media (max-width: 767.98px) {
  #testimonials-15 {
    padding: 50px 0;
  }
  #testimonials-15 .section-header h2 {
    font-size: 2rem;
  }
  #testimonials-15 .testimonial-bubble {
    padding: 15px 20px;
  }
  #testimonials-15 .bubble-message {
    font-size: 0.95rem;
  }
}



#faq-2 {
  padding: 60px 0;
  background-color: #ffffff;
}
#faq-2 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-2 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 30px;
}
#faq-2 .search-box {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
#faq-2 .search-box input {
  width: 60%;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  border-radius: 4px 0 0 4px;
  outline: none;
}
#faq-2 .search-box button {
  padding: 10px 20px;
  border: none;
  background-color: #17a2b8;
  color: #ffffff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
#faq-2 .search-box button:hover {
  background-color: #138496;
}
#faq-2 .accordion-button {
  background-color: #f1f1f1;
  color: #333333;
  border: none;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
}
#faq-2 .accordion-button:hover {
  background-color: #e2e6ea;
}
#faq-2 .accordion-body {
  padding: 20px;
  background-color: #ffffff;
  border-left: 2px solid #17a2b8;
}



#call-to-action-22 {
  padding: 4rem 0;
  overflow: hidden;
  color: #ffffff;
}
.cta-urgent {
}
.cta-urgent-icon i {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.cta-urgent-headline {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-urgent-subtext {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-urgent-button .btn {
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.cta-urgent-button .btn:hover {
  transform: scale(1.05);
}
.cta-urgent-button .btn i {
  margin-right: 8px;
}
@media (max-width: 767.98px) {
  #call-to-action-22 {
    padding: 3rem 0;
  }
  .cta-urgent-icon i {
    font-size: 3rem;
  }
  .cta-urgent-headline {
    font-size: 1.9rem;
  }
  .cta-urgent-subtext {
    font-size: 1rem;
  }
}


