.specialties-section {
    background: #f4f4f4;
    border-radius: 30px;
    padding: 50px;
}

.specialties-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.specialties-content {
    flex: 1;
}

.specialties-map {
    flex: 0 0 40%;
    text-align: center;
}

.specialties-map img {
    max-width: 100%;
    height: auto;
}

.specialty-group {
    margin-bottom: 30px;
}

.specialty-group h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0087a8;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 15px;
}

.check-icon {
    width: 20px;
    height: 20px;
    background: #5bc46a;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.specialty-group ul {
    margin: 0;
    padding-left: 42px;
    list-style: disc;
}

.specialty-group ul li {
    margin-bottom: 3px;
    color: #222;
    font-size: 19px;
    font-weight: 300;
    line-height: 26px;
}

/* Tablet */
@media (max-width: 991px) {

    .specialties-section {
        padding: 40px 30px;
    }

    .specialties-container {
        gap: 30px;
    }

    .specialty-group h3 {
        /* font-size: 22px; */
    }

    .specialty-group ul li {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    .specialties-section {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .specialties-container {
        flex-direction: column-reverse;
        text-align: left;
    }

    .specialties-map {
        width: 100%;
    }

    .specialty-group h3 {
        /* font-size: 20px; */
    }

    .specialty-group ul {
        padding-left: 30px;
    }

    .specialty-group ul li {
        font-size: 15px;
        line-height: 1.7;
    }
}


/* RCM top */

.hero-section{
    position:relative;
    min-height:60vh;    
    display:flex;
    align-items:center;
    padding: 30px 0;
}

.hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    /* background:rgba(255,255,255,0.75); */
}

.hero-section .container {
    position:relative;
    z-index:2;
    width:100%;
    max-width:1200px;
    max-width:1400px;
    margin:auto;
    padding:60px 20px;
}

.content-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.left-content{
    max-width:650px;
    /* max-width:750px; */
    font-family: "Poppins", Sans-serif;
}

.breadcrumb{
    font-size:14px;
    margin-bottom:25px;
    color:#444;
}

.breadcrumb a{
    color:#d94c61;
    text-decoration:none;
}

.sub-title {
  font-family: "Poppins", Sans-serif;
  color:#d96b78;
  font-size:22px;
  font-size:24px;
  font-weight:400;
  margin-bottom:20px;
}

.main-title {
    font-family: "Poppins", Sans-serif;
    font-size:60px;
    line-height:1.05;
    font-weight:700;
    color:#005d73;
    margin-bottom:25px;
}
.left-content .main-title {
    font-size:44px;
}
.description{
    color:#222;
    font-size:18px;
    line-height:1.7;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    background:#1f6b72;
    color:#fff;
    text-decoration:none;
    padding:18px 45px;
    border-radius:4px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#14535a;
}

.right-content{
    flex-shrink:0;
}

.badge{
    max-width:420px;
    width:100%;
    display:block;
}

/* Tablet */
@media (max-width: 992px){

    .content-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .left-content{
        max-width:100%;
    }

    .main-title{
        font-size:48px;
    }

    .badge{
        max-width:320px;
    }
}

/* Mobile */
@media (max-width: 576px){

    .hero-section{
        min-height:auto;
    }

    .container{
        padding:50px 20px;
    }

    .sub-title{
        font-size:18px;
    }

    .main-title{
        font-size:36px;
    }

    .description{
        font-size:16px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

    .badge{
        max-width:260px;
    }
}


/* rcm section-2 */

.section{
    padding:70px 20px;
}

.section-2.container{
    max-width:1200px;
    margin:auto;
}

.row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

/* LEFT SIDE */

.image-box{
    flex:1;
    display:flex;
    justify-content:center;
}

.image-card{
    background:#d9d9d9;
    border-radius:24px;
    padding:8px;
    box-shadow:8px 8px 0 #80914a;
    overflow:hidden;
}

.image-card img{
    display:block;
    width:100%;
    max-width:420px;
    height:auto;
}

/* RIGHT SIDE */

.content{
    flex:1;
    text-align:center;
}

.content h2{
    line-height:1.1;
    margin-bottom:30px;
    font-size: 30px;
    font-weight: 600;
    color: #00585F;
    font-family: "Poppins", Sans-serif;
}

.content p{
    font-size:18px;
    line-height:1.7;
    color:#333;
    margin-bottom:25px;
}

/* Tablet */

@media(max-width:991px){

    .row{
        flex-direction:column;
        gap:50px;
    }

    .content h2{
        font-size:42px;
    }

    .content{
        text-align:center;
    }
}

/* Mobile */

@media(max-width:767px){

    .section{
        padding:50px 15px;
    }

    .content h2{
        font-size:32px;
    }

    .content p{
        font-size:16px;
    }

    .image-card{
        box-shadow:5px 5px 0 #80914a;
    }

    .image-card img{
        max-width:100%;
    }
}

.rcm-process-section {
    /* background: #dfe8e8; */
    /* padding: 80px 20px; */
    background: #e1f0ee;
    padding: 50px 20px;
}

.rcm-process-section .container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    max-width: 850px;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-header h2 {
    font-family: "Poppins", sans-serif;
    font-family: "Quarto Regular", Sans-serif;
    font-size: 42px;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #005b66;
    margin-bottom: 20px;
}

.section-header p {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: #242424;
  margin-bottom: 15px;
}
.fs-16 {
  font-size: 16px !important;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    /* background: #fff; */
    border-radius: 18px;
    padding: 30px 25px;
    text-align: center;
    min-height: 280px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.step-number {
    font-family: "BourtonLine Normal", Sans-serif;
    display: block;
    color: #d46953;
    font-size: 34px;
    font-weight: 700;
      font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.step-card h3 {
    color: #005b66;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 18px;
    font-family: "Quarto Regular", Sans-serif;
    font-size: 24px;
}

.step-card p {
    font-family: "Poppins", sans-serif;
    color: #444;
    color: #24244b;
    font-size: 16px;
    line-height: 1.7;
}

.consultation-btn-wrap {
    color: #242424;
    text-align: center;
    margin-top: 40px;
}

.consultation-btn {
    display: inline-block;
    background: #0d5f69;
    color: #fff;
    text-decoration: none;
    padding: 16px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.consultation-btn:hover {
    transform: translateY(-2px);
}
.mbs-process-section .steps-grid {
    grid-template-columns: repeat(6, 1fr);
}
.mbs-process-section .step-card {
  padding: 20px 25px;
  min-height: 230px;
}
.mbs-process-section  .step-card:nth-child(1) {
    grid-column: 1 / 3;
}
.mbs-process-section  .step-card:nth-child(2) {
    grid-column: 3 / 5;
}
.mbs-process-section  .step-card:nth-child(3) {
    grid-column: 5 / 9;
}
.mbs-process-section  .step-card:nth-child(4) {
    grid-column: 2 / 4;
}
.mbs-process-section  .step-card:nth-child(5) {
    grid-column: 4 / 6;
}

.mbs-process-section .step-number {
  font-family: "BourtonLine Normal", Sans-serif;
  text-transform: unset;
  font-size: 25px;
  font-weight: 600;
  color: #D46953;
}
.mbs-process-section .step-card h3 {
    font-size: 25px;
}
/* Tablet */
@media (max-width: 992px) {


    /* .mbs-process-section  .step-card:nth-child(1) {
        grid-column: 1 / 3;
    }
    .mbs-process-section  .step-card:nth-child(2) {
        grid-column: 3 / 5;
    }
    .mbs-process-section  .step-card:nth-child(3) {
        grid-column: 5 / 9;
    }
    .mbs-process-section  .step-card:nth-child(4) {
        grid-column: 2 / 4;
    }
    .mbs-process-section  .step-card:nth-child(5) {
        grid-column: 4 / 6;
    } */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 34px;
    }

    .step-card h3 {
        font-size: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {

  .fs-16 {
    font-size: 14px !important;
  }
  .mbs-process-section .steps-grid {
      grid-template-columns: repeat(2, 1fr);
  }
  .mbs-process-section  .step-card {
      grid-column: unset !important;
  }
    .rcm-process-section {
        padding: 60px 15px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 15px;
    }

    .step-number {
        font-size: 28px;
    }

    .step-card h3 {
        font-size: 22px;
    }

    .step-card {
        min-height: auto;
        padding: 25px 20px;
    }

    .consultation-btn {
        width: 100%;
        max-width: 300px;
    }
}
@media (max-width: 480px) {

  .mbs-process-section .steps-grid {
      grid-template-columns: repeat(1, 1fr);
  }
}
/* rcm-partner-section */
.rcm-partner-section {
  width: 100%;
  background: #ffffff;
  padding: 30px 20px 40px;
  font-family: "Poppins", sans-serif;
}

.rcm-container {
  max-width: 90%;
  margin: 0 auto;
    max-width: 1100px;
}
.rcm-container .rcm-heading-wrap {
    max-width: 1080px;
    margin: 0 auto;
}
.rcm-heading-wrap .inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.rcm-heading-wrap h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #263159;
}

.rcm-heading-wrap p {
    margin: 0 auto 12px;
    font-size: 16px;
    line-height: 1.45;
    width: var(--container-widget-width, 78.464%);
    max-width: 78.464%;
    --container-widget-width: 78.464%;
    --container-widget-flex-grow: 0;
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    color: #222121;
}

.rcm-heading-wrap span {
    display: inline-block;
    color: #202020;
    font-size: 13px;
    font-weight: 400;
    width: 100%;
    text-align: center;
}

.rcm-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.rcm-card {
  position: relative;
  min-height: 153px;
  border-radius: 10px;
  padding: 30px 48px 22px 12px;
  padding: 30px 54px 22px 12px;
  overflow: hidden;
}

.rcm-card-purple {
  background: #cdd3f7;
}

.rcm-card-teal {
  background: #dcefee;
}

.rcm-card-red {
  background: #f0d9d9;
}

.rcm-card h3 {
  margin: 0 0 12px;
  line-height: 1.25;
  color: #00627b;
    font-size: 20px;
    font-weight: 600;
}

.rcm-card p {
  margin: 0;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.rcm-icon {
  position: absolute;
  top: 28px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.rcm-icon svg {
  width: 32px;
  height: 32px;
}
.icon-md.rcm-icon svg {
  width: 25px;
  height: 25px;
}
.rcm-icon-purple {
  background: #35309a;
}

.rcm-icon-teal {
  background: #007482;
}

.rcm-icon-red {
  background: #df684f;
}

/* Tablet */
@media (max-width: 991px) {
  .rcm-partner-section {
    padding: 35px 18px;
  }

  .rcm-heading-wrap h2 {
    font-size: 28px;
  }

  .rcm-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .rcm-heading-wrap h2 {
    font-size: 25px;
    line-height: 1.08;
  }

  .rcm-heading-wrap h2 br {
    display: none;
  }

  .rcm-heading-wrap p {
    font-size: 12.5px;
  }

  .rcm-card-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 26px;
  }

  .rcm-card {
    min-height: auto;
    padding: 24px 55px 22px 16px;
    grid-column: 1 / 3;
  }

  .rcm-icon {
    top: 22px;
    right: 15px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .rcm-partner-section {
    padding: 30px 14px;
  }

  .rcm-heading-wrap h2 {
    font-size: 23px;
  }

  .rcm-card {
    padding-right: 45px;
  }

  .rcm-card h3 {
    font-size: 14px;
  }

  .rcm-card p {
    font-size: 12px;
  }

  .rcm-icon {
    width: 30px;
    height: 30px;
  }

  .rcm-icon svg {
    width: 19px;
    height: 19px;
  }
}


/* services-section */

.services-section {
  width: 100%;
  background: #e5f5f3;
  padding: 16px 20px 10px;
}

.services-container {
  max-width: 1080px;
  margin: 0 auto;
}

.services-header {
  max-width: 100%;
  margin: 0 auto 38px;
  text-align: center;
}

.services-label {
    font-size: 18px;
    font-weight: 600;
    color: #3C5E61;
}

.services-header h2 {
    margin: 0 0 16px;
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #00585F;
}

.services-header p {
    color: #101010;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px 6px;
  align-items: stretch;
}

.service-card {
  grid-column: span 2;
  min-height: 240px;
  background: #eefdfb;
  background: transparent;
  border-radius: 14px;
  padding: 18px 18px 18px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

.service-card h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #00585F;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    text-align: center;
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    color: #242424;
}

.small-card {
  min-height: 125px;
  padding: 18px 18px 16px;
}

.bottom-card {
  grid-column: span 2;
}

.bottom-card:nth-last-child(2) {
    grid-column: 2 / 4;
}

.services-btn-wrap {
  text-align: center;
  margin-top: 24px;
}

.services-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 42px;
  background: #1F585E;
  color: #ffffff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: 0.3s ease;
}

.services-btn:hover {
  background: #0d4850;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .services-section {
    padding: 30px 18px;
  }

  .services-header h2 {
    font-size: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card,
  .small-card,
  .bottom-card,
  .bottom-card:nth-last-child(2) {
    grid-column: auto;
    min-height: 180px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .services-header {
    margin-bottom: 28px;
  }

  .services-header h2 {
    font-size: 22px;
    line-height: 1.12;
  }

  .services-header h2 br {
    display: none;
  }

  .services-header p {
    font-size: 12.5px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card,
  .small-card {
    min-height: auto;
    padding: 20px 18px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 13px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .services-section {
    padding: 25px 14px;
  }

  .services-label {
    font-size: 12px;
  }

  .services-header h2 {
    font-size: 20px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .services-btn {
    width: 100%;
    max-width: 220px;
  }
}

/* healthcare cta section */

.healthcare-cta-section {
  width: 100%;
  background: #ffffff;
  padding: 50px 20px;
}

.healthcare-cta-container {
  max-width: 1070px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.healthcare-cta-content {
  background: #f8f9fc;
  padding: 26px 26px 24px;
  min-height: 310px;
}

.healthcare-cta-content h2 {

  font-family: "Quarto Regular", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #00585F;
}

.healthcare-cta-content p {
  font-family: "Poppins", sans-serif;
    margin: 0 0 14px;
    color: #242424;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.healthcare-contact-text {
  margin-bottom: 26px !important;
}

.healthcare-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 173px;
  height: 33px;
  margin: 0 auto;
  background: #155e64;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  transition: 0.3s ease;
}

.healthcare-cta-btn:hover {
  background: #0f4d52;
  color: #ffffff;
}

.healthcare-cta-image {
  width: 100%;
}

.healthcare-cta-image img {
  width: 100%;
  height: 279px;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .healthcare-cta-section {
    padding: 40px 18px;
  }

  .healthcare-cta-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 35px;
  }

  .healthcare-cta-content {
    min-height: auto;
  }

  .healthcare-cta-content h2 {
    font-size: 22px;
  }

  .healthcare-cta-image img {
    height: 260px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .healthcare-cta-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .healthcare-cta-content {
    order: 2;
    padding: 28px 22px;
    text-align: center;
  }

  .healthcare-cta-image {
    order: 1;
  }

  .healthcare-cta-content h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .healthcare-cta-content h2 br {
    display: none;
  }

  .healthcare-cta-image img {
    height: 260px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .healthcare-cta-section {
    padding: 30px 14px;
  }

  .healthcare-cta-content {
    padding: 24px 18px;
  }

  .healthcare-cta-content h2 {
    font-size: 21px;
  }

  .healthcare-cta-content p {
    font-size: 12.5px;
  }

  .healthcare-cta-btn {
    width: 100%;
    max-width: 180px;
  }

  .healthcare-cta-image img {
    height: 220px;
  }
}

/* compliance section */
.compliance-section {
  width: 100%;
  background: #ffffff;
  padding: 42px 20px 25px;
}

.compliance-container {
  max-width: 1080px;
  margin: 0 auto;
}

.compliance-header {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.compliance-header h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #263159;
}

.compliance-section h2.heading-before-compliance {
  text-align: center;
    font-family: "Quarto Regular", Sans-serif;
    font-size: 45px;
    font-weight: 700;
    color: #263159;
    margin-bottom: 60px;
}

.compliance-header p {
  font-family: "Poppins", sans-serif;
  margin: 0 auto 14px;
  color: #202020;
  color: #313131;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.compliance-section .compliance-logos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 55px;
  margin-top: 70px;
}

.compliance-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-logo img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.compliance-logo-hipaa img {
  max-height: 145px;
}

.compliance-logo-dwc img {
  max-height: 100px;
}

.compliance-logo-data img {
  max-height: 150px;
}

.compliance-btn-wrap {
  text-align: center;
  margin-top: 45px;
}

.compliance-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 54px;
  background: #005d67;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  transition: 0.3s ease;
}

.compliance-btn:hover {
  background: #004a52;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .compliance-section {
    padding: 38px 18px 30px;
  }

  .compliance-header h2 {
    font-size: 34px;
  }

  .compliance-header p {
    font-size: 14px;
  }

  .compliance-logos {
    gap: 30px;
    margin-top: 50px;
  }

  .compliance-logo-hipaa img,
  .compliance-logo-data img {
    max-height: 120px;
  }

  .compliance-logo-dwc img {
    max-height: 80px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .compliance-header h2 {
    font-size: 28px;
    line-height: 1.08;
  }

  .compliance-header h2 br {
    display: none;
  }

  .compliance-header p {
    font-size: 13px;
  }

  .compliance-logos {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 40px;
  }

  .compliance-logo-hipaa img,
  .compliance-logo-data img {
    max-height: 120px;
  }

  .compliance-logo-dwc img {
    max-height: 80px;
  }

  .compliance-btn-wrap {
    margin-top: 35px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .compliance-section {
    padding: 30px 14px 28px;
  }

  .compliance-header h2 {
    font-size: 24px;
  }

  .compliance-btn {
    width: 100%;
    max-width: 220px;
    height: 48px;
    font-size: 15px;
  }
}

/* rcm hero cta */
.rcm-hero-cta {
  position: relative;
  width: 100%;
  min-height: 415px;
  min-height: 610px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 0;
  overflow: hidden;
}

.rcm-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.22);
  z-index: 1;
}

.rcm-hero-content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin-top: 25px;
  text-align: center;
}

.rcm-hero-content h2 {
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #00585F;
}

.rcm-hero-content p {
  margin: 0 auto 28px;
  max-width: 440px;
  color: #171717;
  font-size: 16px;
  font-weight: 400;
}

.rcm-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 175px;
  height: 39px;
  background: #145d65;
  color: #ffffff;
  border-radius: 7px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: 0.3s ease;
}

.rcm-hero-btn:hover {
  background: #0e4b52;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .rcm-hero-cta {
    min-height: 360px;
    padding: 55px 18px;
    background-position: center;
  }

  .rcm-hero-content h2 {
    font-size: 25px;
  }

  .rcm-hero-content p {
    font-size: 14px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .rcm-hero-cta {
    min-height: 430px;
    padding: 50px 18px;
    background-position: center;
  }

  .rcm-hero-overlay {
    background: rgba(255, 255, 255, 0.58);
  }

  .rcm-hero-content {
    margin-top: 0;
    max-width: 100%;
  }

  .rcm-hero-content h2 {
    font-size: 24px;
    line-height: 1.08;
  }

  .rcm-hero-content h2 br {
    display: none;
  }

  .rcm-hero-content p {
    max-width: 420px;
    font-size: 13.5px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .rcm-hero-cta {
    min-height: 390px;
    padding: 45px 14px;
  }

  .rcm-hero-content h2 {
    font-size: 21px;
  }

  .rcm-hero-content p {
    font-size: 13px;
  }

  .rcm-hero-btn {
    width: 100%;
    max-width: 190px;
  }
}

.billing-expertise-section {
  width: 100%;
  background: #25335f;
  padding: 18px 20px 20px;
}

.billing-expertise-container {
  max-width: 1040px;
  margin: 0 auto;
}

.billing-expertise-header {
  max-width: 730px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.billing-expertise-header h2 {
    font-family: "Quarto Regular", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #FFFFFF;
}

.billing-expertise-header p {
  margin: 0 auto;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.42;
  font-weight: 600;
}

.billing-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  margin-top: 42px;
  margin-bottom: 42px;
}

.billing-stat-item {
  text-align: center;
  color: #ffffff;
}

.billing-stat-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.billing-stat-icon svg {
  width: 48px;
  height: 48px;
}

.billing-stat-item h3 {
    margin: 0;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.18;
    font-family: "Quarto Regular", Sans-serif;
    font-weight: 600;
}

.billing-feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 54px 55px;
  display: grid;
  grid-template-columns: 1fr 455px;
  gap: 45px;
  align-items: center;
}

.billing-feature-content h3 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.02;
  font-family: "Quarto Regular", Sans-serif;
  font-weight: 600;
  color: #263159;
}

.billing-feature-content p {
  margin: 0 0 32px;
  color: #111111;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 400;
}

.billing-feature-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 16px;
  background: #005355;
  color: #ffffff;
  border-radius: 9px;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 800;
  transition: 0.3s ease;
}

.billing-feature-btn:hover {
  background: #004e52;
  color: #ffffff;
}

.billing-feature-image img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .billing-expertise-section {
    padding: 35px 18px;
  }

  .billing-expertise-header h2 {
    font-size: 30px;
  }

  .billing-expertise-header p {
    font-size: 14px;
  }

  .billing-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }

  .billing-feature-card {
    grid-template-columns: 1fr;
    padding: 40px 35px;
    gap: 30px;
  }

  .billing-feature-image img {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .billing-expertise-header h2 {
    font-size: 26px;
    line-height: 1.12;
  }

  .billing-expertise-header h2 br {
    display: none;
  }

  .billing-expertise-header p {
    font-size: 13px;
  }

  .billing-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 38px;
  }

  .billing-stat-item h3 {
    font-size: 23px;
  }

  .billing-feature-card {
    padding: 30px 22px;
    border-radius: 14px;
    text-align: center;
  }

  .billing-feature-content h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  .billing-feature-content h3 br {
    display: none;
  }

  .billing-feature-content p {
    font-size: 14px;
  }

  .billing-feature-image img {
    height: 250px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .billing-expertise-section {
    padding: 30px 14px;
  }

  .billing-expertise-header h2 {
    font-size: 23px;
  }

  .billing-stat-item h3 {
    font-size: 20px;
  }

  .billing-feature-card {
    padding: 25px 16px;
  }

  .billing-feature-content h3 {
    font-size: 21px;
  }

  .billing-feature-content p {
    font-size: 13px;
  }

  .billing-feature-btn {
    width: 100%;
    max-width: 170px;
  }

  .billing-feature-image img {
    height: 220px;
  }
}

/* Get Claims Accepted */
.first-submission-section {
  width: 100%;

  padding: 50px 20px;
  padding-top: clamp(67px, 9vw, 180px);
  text-align: center;
  position: relative;
  max-height: 510px;
  margin-top: 40px;
}

.first-submission-container {
  max-width: 920px;
  margin: 0 auto;
  translate: 0px -150px;
}

.first-submission-section h2 {
    line-height: 1.2;
    margin-bottom: 35px;
    font-family: "Quarto Regular", Sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #263159;
}

.submission-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 25px;
}

.submission-main-text {
  font-size: 16px;
  line-height: 1.5;
  color: #202020;
  margin-bottom: 118px;
}

.submission-footer-text {
  font-size: 13px;
  line-height: 1.45;
  color: #4d4d4d;
}

.submission-btn-wrap {
  text-align: center;
}

.submission-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 42px;
  background: #145d65;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: 0.3s ease;
}

.submission-btn:hover {
  background: #0d4850;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .first-submission-section {
    max-height: 510px;
  }
  .first-submission-container {
    translate: 0px -50px;
  }
  

  .submission-card {
    padding: 28px 20px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .first-submission-container {
    translate: 0px 0px;
  }
  .first-submission-section {
    padding: 40px 16px;
  }

  .first-submission-section h2 {
    font-size: 28px;
    line-height: 1.1;
  }

  .submission-card {
    padding: 24px 18px;
  }

  .submission-main-text, .submission-footer-text {
    font-size: 13px;
  }

  .submission-btn {
    width: 100%;
    max-width: 180px;
  }
}


.medical-billing-section {
  width: 100%;
  padding: 50px 20px;
  background: #ffffff;
}

.medical-billing-section .container {
  max-width: 1080px;
  margin: 0 auto;
}

.top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  margin-bottom: 50px;
}

.top-row-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.top-row-text h2 {
    margin-bottom: 16px;
    font-family: "Quarto Regular", Sans-serif;
    font-size: 44px;
    font-weight: 600;
    color: #263159;
}

.top-row-text p {
  font-size: 18px;
  line-height: 24px;
  color: #202020;
}

.bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.bottom-left h3 {
  margin-bottom: 18px;
  font-family: "Quarto Regular", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #263159;
}

.btn-schedule {
  display: inline-block;
  background: #145d65;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-schedule:hover {
  background: #145d65;
  color: #fff;
}

.bottom-right .feature-item {
  display: flex;
  gap: 15px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.feature-icon svg {
  width: 48px;
  height: 48px;
}

.feature-text h4 {
  font-size: 28px;
  margin-bottom: 4px;
  font-family: "Quarto Regular", Sans-serif;
  font-weight: 600;
  margin-block-end: 4px;
  color: #005368;
}

.feature-text p {
  font-size: 16px;
  line-height: 1.4;
  color: #222121;
}

.feature-text .highlight {
  color: #F06658;
}

/* Tablet */
@media (max-width: 991px) {
  .top-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .bottom-row {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .top-row-text h2 {
    font-size: 24px;
  }

  .bottom-left h3 {
    font-size: 18px;
  }

  .feature-text h4 {
    font-size: 14px;
  }

  .feature-text p {
    font-size: 12px;
  }
}

/* personal injury */
.personal-injury .service-hero-title {
    font-size: clamp(1.55rem, 4.8vw, 39px);
    margin-bottom: 25px;
    line-height: 1.1;
    font-family: "Quarto Regular", Sans-serif;
    font-weight: 600;
    color: #16464B;
}

.personal-injury .button-primary {
  background-color: #16464B;
}

.personal-injury-partner-section {
  
}
.personal-injury-partner-section .rcm-heading-wrap .inner {
  max-width: 860px;
  margin: 0 auto 20px;
}
.personal-injury-partner-section .rcm-heading-wrap h2 {
  font-family: "Quarto Regular", Sans-serif;
  font-size: 39px;
  font-weight: 600;
  color: #16464B;
}

.personal-injury-partner-section .rcm-card h3 {
  font-family: "Quarto Regular", Sans-serif;
  color: #005368;
  margin: 0 0 12px;
  line-height: 1.25;
  font-weight: 600;
  font-size: 24px;
}

.personal-injury-partner-section .rcm-card.item_center {
    grid-column: 2 / 3;
}

.rcm-card-pink {
    background: #e9ddf1;
}
.rcm-icon.rcm-icon-pink {
    background: #925BB8;
}
.rcm-card.rcm-card-cream {
  background-color: #F0EDE1;
}
.rcm-icon.rcm-icon-cream {
  background-color: #A77932;
}
.rcm-card.rcm-card-green-2 {
  background-color: #DDEFF1;
}
.rcm-icon.rcm-icon-green-2 {
  background-color: #208D99;
}

.personal-injury .rcm-card.rcm-card-pink h3,
.personal-injury-partner-section .rcm-card.rcm-card-pink h3 {
  color: #925BB8;
}
.rcm-card.rcm-card-cream h3 {
  color: #A77932;
}
.rcm-card.rcm-card-green-2 h3 {
  color: #005368;
}

.personal-injury .rcm-card h3 {
    font-family: "Quarto Regular", Sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.pi-section {
  width: 100%;
  padding: 50px 20px;
  background: #e6eef2;
  box-sizing: border-box;
}

.pi-container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pi-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pi-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.pi-text h2 {
  font-family: "Quarto Regular", Sans-serif;
  margin-bottom: 16px;
  font-size: 39px;
  font-weight: 600;
  color: #263159;
}

.pi-text p {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  color: #7a7a9f;
  margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .pi-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pi-text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pi-section {
    padding: 40px 16px;
  }
  .pi-text h2 {
    font-size: 24px;
  }
  .pi-text p {
    font-size: 13px;
  }
}


.pi-lien-section {
  width: 100%;
  padding: 50px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.pi-lien-container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pi-lien-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  align-items: center;
}

.pi-lien-text h2 {
  font-family: "Quarto Regular", Sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #1f2d55;
  margin-bottom: 16px;
}

.pi-lien-text p {
  font-size: 14px;
  line-height: 1.45;
  color: #4a4a4a;
  margin-bottom: 24px;
}

.pi-lien-btn {
  display: inline-block;
  background: #145d65;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.3s ease;
}

.pi-lien-btn:hover {
  background: #0d4850;
}

.pi-lien-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .pi-lien-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .pi-lien-text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .pi-lien-section {
    padding: 40px 16px;
  }
  .pi-lien-text h2 {
    font-size: 22px;
  }
  .pi-lien-text p {
    font-size: 13px;
  }
  .pi-lien-btn {
    width: 100%;
    max-width: 180px;
  }
}

/* denial management */
.filing-appeals .service-hero-title,
.denial-management .service-hero-title {
  font-family: "Quarto Regular", Sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: #00585F;
}

.denial-management-section {
  width: 100%;
  padding: 50px 20px;
  background: #f6f8fa;
  box-sizing: border-box;
}

.denial-container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.denial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.denial-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.denial-text h2 {
  margin-bottom: 20px;
  font-family: "Quarto Regular", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #00585F;
}

.denial-text p {
  font-family: 'Poppins', Sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #242424;
  margin-bottom: 14px;
}

.denial-text .highlight {
  color: #F06658;
}

/* Tablet */
@media (max-width: 991px) {
  .denial-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .denial-text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .denial-management-section {
    padding: 40px 16px;
  }
  .denial-text h2 {
    font-size: 24px;
  }
  .denial-text p {
    font-size: 13px;
  }
}

.rcm-card-grid.rcm-card-grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.denial-management .rcm-container {
  max-width: 850px;
}

.denial-management .rcm-card h3 {
    margin: 0 0 12px;
    line-height: 1.25;
    color: #00627b;
    font-family: "Quarto Regular", Sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.denial-management .section-header h2 {
  font-family: "Quarto Regular", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #00585F;
}

.denial-management .step-card {
  min-height: unset;
}

.denial-management .healthcare-cta-container {
    max-width: 1170px;
}

/* filing-appeals */
.filing-appeals .sbr-filling {
  font-family: "Quarto Regular", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #00585F;
}

.filing-appeals .sbr-filling + p {
  font-family: "Poppins", Sans-serif;
  max-width: 1026px;
  margin: 0 auto;
  font-size: 16px;
  color: #242424;
}

.sbr-section {
  width: 100%;
  padding: 50px 20px;
  box-sizing: border-box;
}

.sbr-container {
  max-width: 1140px;
  margin: 0 auto;
  box-sizing: border-box;
}

.sbr-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.sbr-image img {
  width: 100%;
  object-fit: cover;
  display: block;
  max-width: 700px;
  margin: 0 auto;
}

.sbr-text h2 {
  margin-bottom: 16px;
  font-family: "Quarto Regular", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #00585F;
}

.sbr-text h3 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 12px;
  color: #005d67;
}

.sbr-text p, .sbr-text li {
  font-family: "Poppins", Sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}

.sbr-text li {
  margin-bottom: 10px;
}

.sbr-text .highlight {
  color: #F06658;
}

/* Tablet */
@media (max-width: 991px) {
  .sbr-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .sbr-text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .sbr-section {
    padding: 40px 16px;
  }
  .sbr-text h2 {
    font-size: 24px;
  }
  .sbr-text h3 {
    font-size: 18px;
  }
  .sbr-text p, .sbr-text li {
    font-size: 13px;
  }
}

.fillin-why-Choose {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.filing-appeals .rcm-card-grid {
  grid-template-columns: repeat(6, 1fr);
}

.filing-appeals .rcm-card:nth-child(1) {
    grid-column: 1 / 3;
}
.filing-appeals .rcm-card:nth-child(2) {
    grid-column: 3 / 5;
}
.filing-appeals .rcm-card:nth-child(3) {
    grid-column: 5 / 9;
}
.filing-appeals .rcm-card:nth-child(4) {
    grid-column: 2 / 4;
}
.filing-appeals .rcm-card:nth-child(5) {
    grid-column: 4 / 6;
}

.wcab-suport .rcm-card h3,
.filing-appeals .rcm-card h3 {
    font-family: "Quarto Regular", Sans-serif;
    font-size: 24px;
    font-weight: 600;
}

.wcab-suport .healthcare-cta-image,
.filing-appeals .healthcare-cta-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.wcab-suport .healthcare-cta-image img,
.filing-appeals .healthcare-cta-image img {
    height: 100%;
}

.wcab-suport .rcm-card.rcm-card-center {
    grid-column: 2 / 3;
}


/*  */

.workers-comp-section {
  width: 100%;
  padding: 50px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.workers-comp-container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.workers-comp-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.workers-comp-image {
  grid-column: 1 / 3;
}
.workers-comp-text {
  grid-column: 3 / 7;
}

.workers-comp-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.workers-comp-text h2 {
  font-family: "Quarto Regular", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #263159;
}

.workers-comp-text p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  color: #2c2c2c;
  margin-bottom: 24px;
}

.workers-comp-text .highlight {
  color: #F06658;
  font-weight: 600;
}

.workers-comp-btn {
  font-family: "Poppins", sans-serif;
  display: inline-block;
  background: #178199;
  color: #fff;
  padding: 12px 20px;
  padding: 10px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.workers-comp-btn:hover {
  background: #178199;
  color: #fff;
}

/* Tablet */
@media (max-width: 991px) {
  .workers-comp-card {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .workers-comp-text {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .workers-comp-section {
    padding: 40px 16px;
  }
  .workers-comp-text h2 {
    font-size: 24px;
  }
  .workers-comp-text p {
    font-size: 13px;
  }
  .workers-comp-btn {
    width: 100%;
    max-width: 180px;
  }
}

.worker-comp-billing .section.py-5 .sbr-filling {
  font-family: "Quarto Regular", Sans-serif;
  color: #263159;
  font-weight: 600;
}

.worker-comp-billing .service-hero-title {
  line-height: 1;
}
.worker-comp-billing .service-hero-content {
  line-height: 1.3;
  max-width: 570px;
}
.worker-comp-billing .service-hero-content .button-primary {
  border-radius: 9px;
  font-size: 16px;
  padding: 15px 30px;
  text-transform: unset;
}
.line-height-1 {
  line-height: 1;
}

@media (min-width: 768px) { 
  .worker-comp-billing .steps-grid.steps-grid-8-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .worker-comp-billing .steps-grid .step-card.bottom-card {
    grid-column: 2;
  }
  
}

@media (min-width: 1080px) { 
  
  .worker-comp-billing .steps-grid.steps-grid-8-card {
    grid-template-columns: repeat(12, 1fr);
  }
  
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(4),
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(1) {
    grid-column: 1 / 5;
  }
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(5),
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(2) {
    grid-column: 5 / 9;
  }
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(6),
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(3) {
    grid-column: 9 / 13;
  }
  
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(7) {
    grid-column: 3 / 7;
  }
  
  .worker-comp-billing .steps-grid.steps-grid-8-card .step-card:nth-child(8) {
    grid-column: 7 / 11;
  }
  
}

.wcab-section {
  width: 100%;
  padding: 50px 20px;
  background: #eef3f8;
  box-sizing: border-box;
}

.wcab-container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.wcab-header h2 {
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: "Quarto Regular", Sans-serif;
    font-size: 40px;
    font-weight: 600;
    color: #263159;
}

.wcab-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 14px;
}

.wcab-header .highlight {
  color: #F06658;
  font-weight: 600;
}

.wcab-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.wcab-feature {
  text-align: center;
}

.wcab-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 12px;
}

.wcab-icon svg {
  width: 100%;
  height: 100%;
}

.wcab-feature h3 {
  font-size: 28px;
  font-weight: 600;
  color: #007C73;
  margin-bottom: 8px;
}

.wcab-feature p {
  font-size: 16px;
  line-height: 1.45;
  color: #333;
}

.wcab-btn-wrap {
  text-align: center;
  margin-top: 35px;
}

.wcab-btn {
    display: inline-block;
    background: #178199;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
    padding: 10px 45px;
    font-size: 16px;
}

.wcab-btn:hover {
  background: #178199;
  color: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .wcab-features {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .wcab-features {
    grid-template-columns: 1fr;
  }
  .wcab-header h2 {
    font-size: 24px;
  }
  .wcab-header p {
    font-size: 13px;
  }
  .wcab-feature h3 {
    font-size: 14px;
  }
  .wcab-feature p {
    font-size: 12.5px;
  }
}


.wc-billing-section {
  width: 100%;
  padding: 50px 20px;
  background: #ffffff;
  box-sizing: border-box;
}

.wc-billing-container {
  max-width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}
.wc-billing-container h2 { 
  font-family: "Quarto Regular", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #263159;
}
.wc-billing-container p {
  font-size: 16px;
}

/* Top Row */
.wc-billing-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 50px;
}

.wc-billing-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #1f2d55;
  margin-bottom: 16px;
}

.wc-billing-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 14px;
}

.wc-billing-text ul {
  padding-left: 20px;
  margin-top: 15px;
}

.wc-billing-text li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.wc-billing-text li h3 {
  font-family: "Roboto", Sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #263159;
}


.wc-billing-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

/* Feature Cards */
.wc-billing-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  position: relative;
  border-radius: 10px;
  padding: 25px 20px;
  min-height: 180px;
}

.card-purple { background: #cdd3f7; }
.card-teal { background: #dcefee; }
.card-red { background: #f0d9d9; }

.feature-card h3 {
  color: #005d67;
  margin-bottom: 22px;
  font-family: "Quarto Regular", Sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.feature-card p {
  color: #2d2d2d;
}

.feature-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 22px;
}

/* Tablet */
@media (max-width: 991px) {
  .wc-billing-top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .wc-billing-features {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .wc-billing-text { text-align: center; }
}

/* Mobile */
@media (max-width: 767px) {
  .wc-billing-features {
    grid-template-columns: 1fr;
  }
  .wc-billing-text h2 {
    font-size: 24px;
  }
  .wc-billing-text p, .wc-billing-text li {
    font-size: 13px;
  }
  .feature-card h3 {
    font-size: 14px;
  }
  .feature-card p {
    font-size: 12.5px;
  }
}