
#mobile-app-14 {
  padding: 60px 0;
  background-color: #fff;
}
#mobile-app-14 .app-features-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
#mobile-app-14 .app-features-title {
  font-weight: 700;
  margin-bottom: 1rem;
}
#mobile-app-14 .app-features-description {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
#mobile-app-14 .features-list-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}
#mobile-app-14 .features-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}
#mobile-app-14 .features-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.8rem;
  color: #444;
}
#mobile-app-14 .features-list li i {
  font-size: 1.2em;
  color: #0d6efd;
  margin-right: 12px;
  width: 25px;
  text-align: center;
  margin-top: 3px;
}
#mobile-app-14 .app-download-buttons-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
#mobile-app-14 .btn-download-app {
  background-color: #000;
  color: #fff;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#mobile-app-14 .btn-download-app:hover {
  background-color: #333;
  transform: translateY(-2px);
}
#mobile-app-14 .btn-download-app i {
  font-size: 1.8em;
  margin-right: 10px;
}
#mobile-app-14 .btn-download-app .button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
#mobile-app-14 .btn-download-app .button-text span:first-child {
  font-size: 0.8em;
}
#mobile-app-14 .btn-download-app .button-text span:last-child {
  font-size: 1.1em;
  font-weight: 600;
}
#mobile-app-14 .app-features-image-container {
  text-align: center;
}
#mobile-app-14 .app-features-image {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) {
  #mobile-app-14 .app-features-image-container {
    text-align: left;
  }
  #mobile-app-14 .app-features-image {
    max-width: 100%;
  }
}



#faq-4 {
  padding: 60px 0;
  background-color: #f8f9fa;
}
#faq-4 .faq-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
#faq-4 .faq-subtitle {
  font-size: 18px;
  color: #6c757d;
  margin-bottom: 40px;
}
#faq-4 .accordion-button {
  background-color: #ffffff;
  color: #17a2b8;
  border: 1px solid #17a2b8;
  border-radius: 4px;
  padding: 15px;
  font-size: 16px;
  text-align: left;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
#faq-4 .accordion-button.collapsed {
  background-color: #ffffff;
  color: #17a2b8;
}
#faq-4 .accordion-button:not(.collapsed) {
  background-color: #17a2b8;
  color: #ffffff;
}
#faq-4 .accordion-body {
  padding: 20px;
  background-color: #e9ecef;
  border-left: 2px solid #17a2b8;
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



#customer-support-13 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#customer-support-13 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#customer-support-13 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#customer-support-13 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
#customer-support-13 .support-plan-card {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  background-color: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#customer-support-13 .support-plan-card.highlight {
  border-color: var(--bs-primary);
  border-width: 2px;
  box-shadow: 0 0.5rem 1rem rgba(var(--bs-primary-rgb), 0.15);
}
#customer-support-13 .plan-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}
#customer-support-13 .plan-icon i {
  font-size: 2.5rem;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}
#customer-support-13 .plan-name {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #343a40;
}
#customer-support-13 .plan-description-header {
  font-size: 0.9rem;
  color: #6c757d;
  min-height: 40px;
}
#customer-support-13 .plan-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
#customer-support-13 .plan-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
#customer-support-13 .plan-features li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: #495057;
  font-size: 0.95rem;
}
#customer-support-13 .plan-features li i {
  color: #20c997;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}
#customer-support-13 .plan-footer {
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-top: 1px solid #eee;
  text-align: center;
  margin-top: auto;
}
#customer-support-13 .plan-footer .btn {
  width: 100%;
  padding: 0.7rem 1rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  #customer-support-13 .plan-name {
    font-size: 1.3rem;
  }
}
@media (max-width: 767.98px) {
  #customer-support-13 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #customer-support-13 .section-title {
    font-size: 2.1rem;
  }
  #customer-support-13 .section-subtitle {
    font-size: 1.1rem;
  }
}



#content-block-3 {
  padding: 60px 15px;
  max-width: 900px;
  margin: 0 auto;
}
#content-block-3 .row {
  display: flex;
  gap: 30px;
}
#content-block-3 .left-column {
  flex: 2;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}
#content-block-3 .right-column {
  flex: 1;
  background: #f8f9fa;
  padding: 20px;
  border-left: 3px solid #007bff;
  font-style: italic;
  text-align: center;
}
#content-block-3 .right-column p {
  margin: 0;
}
#content-block-3 .right-column .author {
  margin-top: 10px;
  font-weight: bold;
  font-style: normal;
}
@media (max-width: 768px) {
  #content-block-3 .row {
    flex-direction: column;
  }
  #content-block-3 .right-column {
    border-left: none;
    border-top: 3px solid #007bff;
  }
}


