section.profit-stats {
  background-color: #dbedee;
  padding: 4rem 1rem;
  text-align: center;
  border-radius: 0;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

section.profit-stats h3 {
  color: #111;
  margin: 0 auto;
  max-width: 1100px;
}

.card {
  transition: transform 0.3s ease,box-shadow 0.3s ease;
}

.resource-grid {
  max-width: 1200px;
  margin: 1rem auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 1.5rem;
  color: #111;
}

.resource-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: #f9f9f9;
  padding: 1.5rem 1.75rem;
  border-radius: 0;
  min-height: 200px;
  flex-direction: row;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.resource-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.resource-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.resource-content h5 {
  font-weight: 700;
  color: #222;
  margin: 0 0 .4rem 0;
}

.resource-content p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin: 0 0 .8rem 0;
  flex-grow: 1;
}

@media (max-width:600px) {
  .resource-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
  }
}

@media (max-width:600px) {
  .resource-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }
}

@media (max-width:600px) {
  .resource-content p, .resource-content a {
    font-size: .95rem;
  }
}

.discover-section {
  max-width: 1100px;
  margin: 3rem auto;
  color: #222;
}

.cards-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  padding: 2em;
}

.discover-card {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.discover-card h3 {
  margin: 0;
  font-weight: 700;
  color: #222;
  font-size: 1.3rem;
  margin-bottom: 1em;
}

.discover-card a {
  font-weight: 600;
  color: #0fd46c;
  text-decoration: none;
  font-size: 1rem;
  align-self: flex-start;
  position: relative;
  padding-right: 1.2rem;
  cursor: pointer;
}

.discover-card a::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  padding: 5px;
  transform: translateY(-50%);
  font-weight: 700;
}

.discover-card a:hover, .discover-card a:focus {
  color: #0a9a4b;
  outline: none;
}

.discover-card a:hover::after, .discover-card a:focus::after {
  transform: translateY(-50%)translateX(4px);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.text-grid {
  text-align: left;
  padding: 20px;
}

.text-grid-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.text-grid-item {
  max-width: 245px;
  text-align: center;
  width: 75%;
  margin: 0 auto;
}

@media (max-width:768px) {
  .text-grid-item {
    width: 100%;
    max-width: 275px;
  }
}

.text-grid-item img {
  width: 80px;
  height: auto;
}

.text-grid-item h4 {
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
  font-weight: 700;
}

.text-grid-item p {
  color: #555;
}

.custom-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: all 0.6s ease-in-out;
  padding: 6rem 0;
  color: #fff;
  z-index: 1;
}

.custom-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / .35);
  z-index: -1;
}

.custom-hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.custom-hero-content {
  max-width: 650px;
  text-align: left;
  margin-top: 3em;
}

.custom-hero-logo img {
  max-width: 200px;
  margin-bottom: 1rem;
}

.custom-hero-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.custom-hero-subtitle {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  color: #f8f9fa;
}

.custom-hero-cta {
  margin-top: 1rem;
}

@media (max-width:991px) {
  .custom-hero {
    min-height: auto;
    padding: 4rem 1rem;
    text-align: center;
  }
}

@media (max-width:991px) {
  .custom-hero-content {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width:991px) {
  .custom-hero-subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width:576px) {
  .custom-hero {
    padding: 7rem 1rem;
  }
}

@media (max-width:576px) {
  .custom-hero-subtitle {
    font-size: 1rem;
  }
}

.ecosystem-module {
  padding: 60px 20px;
}

.ecosystem-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto;
  padding: 2em 0;
  align-items: center;
  background-color: #0d333f;
  border-radius: 8px;
}

.ecosystem-image {
  flex: 1 1 45%;
  text-align: center;
  margin-top: -170px;
}

@media (max-width:768px) {
  .ecosystem-image {
    margin-top: 0!important;
  }
}

.ecosystem-content {
  flex: 1 1 50%;
  padding: 1em;
}

@media (max-width:768px) {
  .ecosystem-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width:768px) {
  .ecosystem-content {
    flex: 1 1 100%;
  }
}

.banner-section {
  background-color: #28a745;
  text-align: center;
  padding: 65px 20px;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.banner-container {
  max-width: 900px;
  margin: 0 auto;
}

.banner-heading {
  font-weight: 700;
}

.cleanup-info {
  margin: 1.5em auto;
  max-width: 75%;
  text-align: center;
}

.cleanup-info p {
  margin: 1rem 0;
  font-size: 1rem;
  color: #444;
}

@media (max-width:768px) {
  .cleanup-info {
    max-width: 90%;
  }
}

.rounded-top-corners {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.badge {
  background: #ff8c00;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
}

@media (max-width:768px) {
  .btn {
    width: 100%;
  }
}

.bi.bi-check-circle-fill {
  color: #34bf49;
}

@media (max-width:768px) {
  .text-grid-container {
    flex-direction: column;
    align-items: center;
  }
}

.testimonial-section {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  color: #222;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  background: #f9f9f9;
  border-radius: 0;
  padding: 2rem;
  transition: all 0.6s ease-in-out;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.testimonial-image-wrapper {
  flex: 1 1 300px;
  max-width: 300px;
}

.testimonial-image-wrapper img {
  width: 100%;
  display: block;
  margin: 0 auto;
  -webkit-box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
  box-shadow: 0 10px 30px 0 rgb(38 49 209/.2);
}

.testimonial-text-wrapper {
  flex: 2 1 500px;
  color: #777;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: .25rem;
}

.testimonial-author-note {
  font-size: .875rem;
  color: #666;
}

@media (max-width:768px) {
  .testimonial-container {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1rem;
  }
}

@media (max-width:768px) {
  .testimonial-image-wrapper {
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width:768px) {
  .testimonial-text-wrapper {
    flex: unset;
    margin-top: 1.5rem;
  }
}

.policy-page {
  color: #333;
  line-height: 1.6;
}

.policy-header {
  padding-top: 8em;
  background: #ececec;
  padding-right: 1em;
  padding-bottom: 3em;
  padding-left: 1em;
}

.policy-header h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
}

.policy-updated {
  font-size: .95rem;
  color: #777;
  margin-top: 8px;
}

@media (max-width:576px) {
  .policy-body {
    padding: 20px;
  }
}

.policy-content h4 {
  font-size: 1.5rem;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #0fd46c;
}

.policy-content h3 {
  margin-bottom: 15px;
  color: #0fd46c;
}

.policy-content p {
  margin-bottom: 15px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: "✔";
  color: #34bf49;
  position: absolute;
  left: 0;
  font-weight: 700;
}

.policy-disclaimer {
  margin-top: 40px;
  padding: 15px;
  background: #f8f9fa;
  font-size: .9rem;
  color: #666;
  border-left: 4px solid var(--accent-color,#0077cc);
}

@media (max-width:768px) {
  .policy-header h1 {
    font-size: 1.75rem;
  }
}

@media (max-width:768px) {
  .policy-content h4 {
    font-size: 1.15rem;
  }
}

.hero-image {
  transition: transform 0.4s ease-in-out;
  border-radius: 50%;
}

.bi.bi-check-circle-fill {
  color: #28a745;
}

.hero-heading {
  max-width: 330px;
}

@media (max-width:767px) {
  .hero-heading {
    max-width: 225px;
  }
}

.card-container {
  text-align: center;
  padding: 50px 20px;
  background: #f9f9f9;
}

.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
  transition: transform 0.3s ease-in-out;
  text-align: left;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  border: none;
}

.card-image {
  width: 100%;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.card-content {
  padding: 20px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-content .btn-internal {
  margin-bottom: 10px;
  align-self: flex-start;
}

.badge {
  background: #ff8c00;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  max-width: 65px;
}

@media (max-width:768px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width:768px) {
  .card {
    max-width: 100%;
  }
}

.industry-section {
  max-width: 1100px;
  margin: 3rem auto 6rem;
  padding: 0 1rem;
  color: #222;
  position: relative;
}

.industry-carousel-wrapper {
  overflow: hidden;
}

.industry-grid {
  display: flex;
  gap: 2em;
  transition: transform 0.5s ease;
  will-change: transform;
  padding: 2em 0;
}

.industry-card {
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease,box-shadow 0.3s ease;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.industry-card:hover {
  box-shadow: 0 8px 24px rgb(0 0 0/0.15);
}

@media (max-width:768px) {
  .industry-card {
    flex: 0 0 100%;
  }
}

.industry-image {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-radius: 8px;
  filter: drop-shadow(0 1px 3px rgb(0 0 0/0.1));
}

.industry-title {
  font-weight: 700;
  font-size: 1.45rem;
  color: #333;
  margin: 0;
}

.industry-desc {
  font-size: 1rem;
  color: #333;
  flex-grow: 1;
  margin-bottom: 0;
}

.learn-more {
  align-self: flex-start;
  text-decoration: none;
  color: #0fd46c;
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  padding-right: 20px;
  transition: color 0.3s ease;
}

.learn-more::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  transition: transform 0.3s ease;
}

.learn-more:hover, .learn-more:focus {
  color: #0a9a4b;
}

.learn-more:hover::after, .learn-more:focus::after {
  transform: translateY(-50%)translateX(4px);
}

.nav-container {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 1rem;
  display: flex;
  gap: 1rem;
  user-select: none;
}

.nav-arrow {
  background: #0fd46c;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease,transform 0.2s ease;
  box-shadow: 0 2px 6px rgb(15 212 108/0.5);
}

.nav-arrow:hover:not(:disabled) {
  background-color: #0a9a4b;
  transform: scale(1.1);
}

.nav-arrow svg {
  width: 22px;
  height: 22px;
  fill: #fff;
}

.card-title {
  margin-bottom: 10px;
}

.card-text {
  font-size: 1rem;
  color: #444;
  margin-bottom: 20px;
}

.feature-card-1 {
  background-color: #0d333f;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgb(0 0 0 / .1);
  transition: transform 0.3s ease,box-shadow 0.3s ease;
  min-height: 20.625rem;
}

.feature-card-1:hover {
  box-shadow: 0 10px 25px rgb(0 0 0 / .15);
}

.industry-carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.industry-card {
  flex: 0 0 calc(100% / 3);
  box-sizing: border-box;
  padding: 1rem;
}

@media (max-width:768px) {
  .industry-card {
    flex: 0 0 100%;
  }
}

.section-header {
  margin-bottom: 2rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section-header h2 {
  margin-bottom: .75rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.03em;
}

.section-header p {
  font-size: clamp(1.45rem, 1vw + 0.5rem, 1.125rem);
  color: #555;
  margin: 0 auto;
  max-width: 800px;
}

.unique-pricing-section {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.unique-pricing-container {
  max-width: 1100px;
  width: 100%;
}

.unique-pricing-card {
  display: flex;
  background: #fff;
  border-radius: 8px;
  padding: 3rem 2rem;
  gap: 2rem;
  flex-wrap: wrap;
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.unique-pricing-left, .unique-pricing-middle, .unique-pricing-right {
  flex: 1;
  min-width: 250px;
}

.unique-pricing-left h3 {
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

.unique-pricing-left .starting {
  font-size: .95rem;
  font-weight: 500;
  color: #666;
  margin: .5rem 0 0;
}

.unique-pricing-left .price {
  font-size: 2rem;
  font-weight: 700;
  color: #2631d1;
  margin: .25rem 0;
}

.unique-pricing-left .price span {
  font-size: 2.5rem;
  color: #000;
}

.unique-pricing-left .note {
  font-size: .85rem;
  color: #777;
  margin: .5rem 0 1rem;
}

.unique-pricing-left .btn {
  font-size: 14px;
  color: #fff;
  padding: .6rem 1.2rem;
  border: none;
  cursor: pointer;
}

.unique-pricing-left .btn:hover {
  background-color: #fff;
  color: #34bf49;
  border: 2px solid #34bf49;
}

.unique-pricing-middle ul, .unique-pricing-right ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.unique-pricing-middle li, .unique-pricing-right li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.unique-pricing-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

@media (max-width:992px) {
  .unique-pricing-card {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.feature-block {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1em;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse .feature-content {
  direction: ltr;
}

.feature-content h3:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #28a745;
  left: 0;
  bottom: 0;
  position: absolute;
}

.feature-content h3 {
  letter-spacing: -.03em;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.feature-content ul {
  list-style-type: disc;
  padding-left: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width:768px) {
  .feature-block, .feature-block.reverse {
    direction: ltr;
  }
}

.text-block {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem;
  box-sizing: border-box;
}

@media (min-width:768px) {
  .text-block {
    max-width: 75%;
  }
}

.text-block p {
  line-height: 1.6;
}

.resp-text-wrapper {
  text-align: left;
  margin-bottom: .5rem;
}

.resp-text-wrapper p {
  font-size: .9rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -.02em;
}

@media (min-width:768px) {
  .resp-text-wrapper p {
    font-size: .9rem;
  }
}

.qb-carousel__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 75%;
  margin: 0 auto;
}

.qb-carousel__tabs {
  flex: 0 0 45%;
}

.qb-carousel__tab {
  margin-bottom: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.qb-carousel__tab h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #6c757d;
}

.qb-carousel__tab.active h3 {
  color: #000;
}

.qb-carousel__text {
  display: none;
  font-size: 16px;
  line-height: 1.6;
  margin-top: .5rem;
  color: #333;
  max-width: 90%;
}

.qb-carousel__text.active {
  display: block;
}

.qb-carousel__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-carousel__image {
  display: none;
}

.qb-carousel__image.active {
  display: block;
}

.qb-carousel__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

@media (min-width:768px) {
  .qb-carousel__container {
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width:767px) {
  .qb-carousel__container {
    max-width: 100%;
  }
}

.box-shadow {
  -webkit-box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
  box-shadow: 0 0 40px 0 rgb(38 49 209 / .2);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2.4rem;
  border-radius: 50px;
  background: #28a745;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform .32s ease,box-shadow .32s ease,background-color .22s ease,color .22s ease;
  box-shadow: 0 8px 30px rgb(40 167 69 / .18);
  position: relative;
  overflow: hidden;
}

.hero-btn:hover {
  box-shadow: 0 18px 44px rgb(40 167 69 / .22);
  color: #28a745;
  background: #fff;
}

.hero-btn--invert {
  background: #fff;
  color: #28a745;
  box-shadow: 0 8px 28px rgb(0 0 0 / .08);
}

.hero-btn--invert:hover {
  background: #28a745;
  color: #fff;
  box-shadow: 0 18px 44px rgb(0 0 0 / .14);
}

.hero-btn:active {
  transform: translateY(0) scale(.995);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.4rem;
  border-radius: 14px;
  background: #28a745;
  color: #fff;
  border: 2px solid #28a745;
  font-weight: 600;
  text-decoration: none;
  transition: transform .22s ease,box-shadow .22s ease,background-color .18s ease,color .18s ease;
  box-shadow: 0 6px 20px rgb(40 167 69 / .14);
  position: relative;
}

.cta-btn:hover {
  box-shadow: 0 14px 34px rgb(40 167 69 / .18);
  color: #28a745;
  background: #fff;
  border: 2px solid #28a745;
}

.cta-btn--invert {
  background: #fff;
  color: #28a745;
  border-color: #28a745;
  box-shadow: 0 6px 18px rgb(0 0 0 / .06);
}

.cta-btn--invert:hover {
  background: #2d465e;
  color: #fff;
  box-shadow: 0 12px 34px rgb(40 167 69 / .18);
}

.feature-list li {
  line-height: 1.6;
}

.feature-list svg {
  min-width: 24px;
}

.feature-content h3 {
  line-height: 1.4;
}

.feature-list li svg {
  position: relative;
  top: 5px;
}

.feature-image.circle-image {
  width: 525px;
  height: 525px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.feature-image.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:767px) {
  .feature-image.circle-image {
    width: 300px;
    height: 300px;
  }
}

.state-buttons {
  margin-top: 1rem;
}

.state-btn {
  border: 1px solid #0a3b5d;
  background-color: #fff0;
  color: #0a3b5d;
  padding: .5rem 1rem;
  border-radius: 5px;
  font-size: .95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.state-btn:hover {
  background-color: #0a3b5d;
  color: #fff;
}

@media (max-width:768px) {
  .state-btn {
    padding: .45rem .9rem;
    font-size: .9rem;
  }
}

@media (max-width:480px) {
  .state-btn {
    padding: .4rem .7rem;
    font-size: .85rem;
  }
}

.core-values-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .25rem;
}

.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 1.25rem;
  align-items: start;
}

.feature-box {
  background-color: #fff0;
  padding: 1.1rem;
  border-radius: .5rem;
  box-shadow: 0 6px 18px rgb(2 6 23 / .04);
  display: flex;
  flex-direction: column;
  gap: .5rem;
  align-items: flex-start;
  transition: transform 0.2s ease,box-shadow 0.2s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgb(2 6 23 / .08);
}

.feature-box i {
  font-size: 2.2rem;
  color: #28a745;
  line-height: 1;
}

.feature-box h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #222;
}

.feature-box p {
  margin: 0;
  color: #444;
  font-size: .93rem;
  line-height: 1.45;
}

@media (max-width:1199.98px) {
  .core-values-grid {
    gap: 1rem;
  }
}

@media (max-width:767.98px) {
  .core-values-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:575.98px) {
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
}

@media (max-width:575.98px) {
  .feature-box {
    padding: .9rem;
  }
}

@media (max-width:575.98px) {
  .feature-box i {
    font-size: 1.9rem;
  }
}

@media (max-width:575.98px) {
  .feature-box h4 {
    font-size: .98rem;
  }
}

@media (max-width:575.98px) {
  .feature-box p {
    font-size: .88rem;
  }
}

.jobs-list li {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
  padding: .55rem 0;
  border-bottom: 1px solid rgb(0 0 0 / .04);
}

.jobs-list li:last-child {
  border-bottom: none;
}

.jobs-list .check {
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgb(40 167 69 / .09);
  flex: 0 0 38px;
  margin-top: 4px;
}

.jobs-list .check svg path {
  stroke: #28a745;
}

.jobs-list .jobs-item {
  min-width: 0;
}

.jobs-list .jobs-item strong {
  display: block;
  color: #222;
  font-weight: 600;
}

.jobs-list .jobs-item .small {
  color: #555;
}

.cta-dark {
  background: #0f1720;
  border-color: rgb(255 255 255 / .05);
  color: #fff;
  padding: .55rem 1rem;
  font-weight: 600;
  border-radius: .45rem;
  box-shadow: 0 6px 18px rgb(15 23 32 / .18);
  transition: transform .14s ease,box-shadow .14s ease,background .14s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-dark:hover, .cta-dark:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgb(15 23 32 / .22);
  background: #11161a;
  color: #fff;
  outline: none;
}

.cta-dark:active {
  transform: translateY(-1px);
}

@media (max-width:575.98px) {
  .jobs-list li {
    gap: .6rem;
    padding: .45rem 0;
  }
}

@media (max-width:575.98px) {
  .jobs-list .check {
    min-width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }
}

@media (max-width:575.98px) {
  .jobs-list .check svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width:575.98px) {
  .cta-dark {
    width: 100%;
    text-align: center;
    padding: .7rem;
  }
}

@media (min-width:768px) {
  .col-md-6 .p-3 {
    height: 100%;
  }
}

@media (min-width:768px) {
  .jobs-list li {
    align-items: center;
  }
}

@media (min-width:768px) {
  .jobs-list .check {
    margin-top: 0;
  }
}

.tb-section {
  --accent: #ffcc00;
}

@media (min-width:992px) {
  .tb-left {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

@media (min-width:992px) {
  .tb-right {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

.tb-benefits {
  background-color: #0f1720;
  color: #fff;
  border-radius: .5rem;
  box-shadow: 0 6px 18px rgb(2 6 23 / .35);
}

.tb-benefits h3 {
  color: var(--accent);
  font-weight: 600;
}

.tb-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tb-benefits li {
  padding: .55rem 0;
  border-bottom: 1px solid rgb(255 255 255 / .05);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.tb-benefits li:last-child {
  border-bottom: none;
}

.tb-check {
  min-width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgb(255 255 255 / .06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent);
  margin-top: 3px;
  font-size: 14px;
}

.tb-left h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.tb-left p {
  color: #222;
  line-height: 1.6;
}

@media (max-width:576px) {
  .tb-left h2 {
    font-size: 1.5rem;
  }
}

@media (max-width:576px) {
  .tb-benefits {
    padding: 1rem;
  }
}

#qbo-proadvisor-support {
  font-family: "Inter",system-ui,sans-serif;
}

#qbo-proadvisor-support .qbo-feature-card {
  background: linear-gradient(180deg,#fff,#f9fbff);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgb(12 30 60 / .05);
  transition: transform 0.3s ease;
}

#qbo-proadvisor-support .qbo-feature-card:hover {
  transform: translateY(-4px);
}

#qbo-proadvisor-support p, #qbo-proadvisor-support li {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}

#qbo-proadvisor-support .qbo-checklist li, #qbo-proadvisor-support .qbo-service-list li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .4rem 0;
  border-bottom: 1px solid rgb(0 0 0 / .05);
}

#qbo-proadvisor-support .qbo-service-list li:last-child {
  border-bottom: none;
}

@media (max-width:767.98px) {
  #qbo-proadvisor-support .qbo-feature-card {
    padding: 1.25rem;
  }
}

#tax-expert-section {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.tax-expert-img {
  border-radius: 14px;
  max-width: 95%;
  height: auto;
  transition: transform 0.4s ease,box-shadow 0.4s ease;
}

.tax-expert-img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgb(0 0 0 / .15);
}

.tax-expert-badge span {
  background: rgb(40 167 69 / .1);
  color: #28a745;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .85rem;
  letter-spacing: .5px;
  display: inline-block;
}

.tax-expert-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1b1b1b;
}

.text-highlight {
  color: #0a8543;
}

.tax-expert-desc {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.tax-expert-btn {
  background-color: #28a745;
  color: #fff;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tax-expert-btn:hover {
  background-color: #28a745;
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width:991px) {
  .tax-expert-content {
    text-align: center;
  }
}

@media (max-width:991px) {
  .tax-expert-title {
    font-size: 1.8rem;
  }
}

@media (max-width:991px) {
  .tax-expert-desc {
    font-size: 1rem;
    padding: 0 10px;
  }
}

@media (max-width:767px) {
  #tax-expert-section {
    padding: 3rem 1rem;
  }
}

@media (max-width:767px) {
  .tax-expert-title {
    font-size: 1.6rem;
  }
}

@media (max-width:767px) {
  .tax-expert-btn {
    padding: 10px 24px;
    font-size: .95rem;
  }
}

@media (max-width:575px) {
  .tax-expert-img {
    width: 100%;
    border-radius: 10px;
  }
}

@media (max-width:575px) {
  .tax-expert-title {
    font-size: 1.45rem;
  }
}

@media (max-width:575px) {
  .tax-expert-desc {
    font-size: .95rem;
  }
}

#contact-banner {
  padding: 2em 0;
  position: relative;
  margin: 1em;
  border-radius: 50px;
  overflow: hidden;
  background: url("../../assets/img/section-bg@2x-scaled.webp?h=65137a5da8a542321be0cb40ec3a9790") center / cover no-repeat;
}

#contact-banner .container, #contact-banner .row, #contact-banner p, #contact-banner a {
  position: relative;
  z-index: 1;
}

.cb-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
}

.cb-cta {
  padding: .5rem 2rem;
  border-width: 2px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 18px;
}

@media (min-width:768px) {
  #contact-banner .row {
    justify-content: center;
  }
}

@media (min-width:768px) {
  .cb-text {
    margin-right: 5%;
  }
}

@media (max-width:767.98px) {
  .cb-text {
    text-align: center;
  }
}

.faq-content {
  font-size: 15px;
}

.faq-content ol {
  list-style-type: upper-roman;
  margin: 8px 0 0 20px;
  padding: 0;
}

.faq-content ol li {
  margin-bottom: 6px;
}

.faq-toggle {
  cursor: pointer;
  float: right;
  transition: transform 0.3s ease;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
}

.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  color: var(--default-color);
  margin-bottom: 2rem;
  font-size: 1.15rem;
  font-weight: 300;
}

.faq .faq-arrow {
  color: #28a745;
}

.faq .faq-container .faq-item {
  background-color: var(--background-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3:hover {
  color: #28a745;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: #28a745;
}

.faq .faq-container .faq-active h3 {
  color: #28a745;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #28a745;
}

/* Add this to your stylesheet */

.faq-content {
  overflow: hidden;
  max-height: 0px;
  transition: max-height 0.35s ease;
}

.faq-item.faq-active .faq-content {
}

.faq-toggle {
  cursor: pointer;
}

