.rte-services-detail{
  width:100%;
  padding:100px 20px;
  background:#ffffff;
  scroll-margin-top:100px;
}

.rte-service-head{
  max-width:850px;
  margin:0 auto 70px;
  text-align:center;
}

.rte-section-badge{
  display:inline-block;
  color:#EA580C;
  font-family:'Montserrat',sans-serif;
  font-weight:700;
  font-size:14px;
  margin-bottom:16px;
}

.rte-service-head h2{
  font-family:'Montserrat',sans-serif;
  font-size:46px;
  line-height:1.15;
  color:#0F172A;
  margin:0 0 18px;
}

.rte-service-head p{
  font-family:'General Sans',sans-serif;
  font-size:17px;
  line-height:1.7;
  color:#475569;
  margin:0;
}

.rte-service-block{
  max-width:1200px;
  margin:0 auto 80px;
  display:grid;
  grid-template-columns:1fr 1.08fr;
  gap:46px;
  align-items:center;
  padding:34px;
  border-radius:28px;
  background:#F5F7FA;
}

.rte-service-block:nth-of-type(odd){
  background:#ffffff;
  box-shadow:0 20px 60px rgba(15,23,42,.08);
}

.rte-reverse .rte-service-image{
  order:2;
}

.rte-reverse .rte-service-content{
  order:1;
}

.rte-service-image{
  height:100%;
  min-height:520px;
  border-radius:24px;
  overflow:hidden;
  position:relative;
}

.rte-service-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:.5s ease;
}



.rte-service-content{
  background:#ffffff;
  padding:46px;
  border-radius:24px;
  box-shadow:0 16px 45px rgba(15,23,42,.08);
}

.rte-service-tag{
  display:inline-block;
  background:rgba(234,88,12,.10);
  color:#EA580C;
  padding:9px 15px;
  border-radius:999px;
  font-family:'Montserrat',sans-serif;
  font-size:13px;
  font-weight:800;
  margin-bottom:18px;
}

.rte-service-content h2{
  font-family:'Montserrat',sans-serif;
  color:#0F172A;
  font-size:34px;
  line-height:1.2;
  margin:0 0 20px;
}

.rte-service-content p{
  font-family:'General Sans',sans-serif;
  color:#475569;
  font-size:16px;
  line-height:1.75;
  margin:0 0 16px;
}

.rte-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0;
}

.rte-points span{
  background:#0F172A;
  color:#ffffff;
  padding:10px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:700;
  font-family:'Montserrat',sans-serif;
}

.rte-faq{
  border:1px solid rgba(15,23,42,.12);
  border-radius:16px;
  background:#ffffff;
  margin:22px 0;
  overflow:hidden;
}

.rte-faq summary{
  cursor:pointer;
  padding:18px 20px;
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  color:#0F172A;
  list-style:none;
}

.rte-faq summary::-webkit-details-marker{
  display:none;
}

.rte-faq summary::after{
  content:'+';
  float:right;
  color:#EA580C;
  font-size:22px;
  line-height:1;
}

.rte-faq[open] summary::after{
  content:'−';
}

.rte-faq p{
  padding:0 20px 18px;
  margin:0;
  font-size:15px;
}

.rte-urgent-note{
  background:#EA580C;
  color:#ffffff;
  padding:16px 18px;
  border-radius:16px;
  font-family:'Montserrat',sans-serif;
  font-weight:800;
  margin:22px 0;
}

.rte-service-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:24px;
}

.rte-btn-primary,
.rte-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 22px;
  border-radius:14px;
  font-family:'Montserrat',sans-serif;
  font-size:15px;
  font-weight:800;
  text-decoration:none;
  transition:.3s ease;
}

.rte-btn-primary{
  background:#EA580C;
  color:#ffffff;
}

.rte-btn-primary:hover{
  background:#C2410C;
  transform:translateY(-3px);
}

.rte-btn-secondary{
  background:#ffffff;
  color:#0F172A;
  border:2px solid #EA580C;
}

.rte-btn-secondary:hover{
  background:#0F172A;
  color:#ffffff;
  border-color:#0F172A;
  transform:translateY(-3px);
}

.rte-btn-primary,
.rte-btn-secondary{
  gap:8px;
}

.rte-btn-icon{
  width:18px;
  height:18px;
  flex-shrink:0;
}

/* Tablet */
@media(max-width:991px){
  .rte-services-detail{
    padding:80px 18px;
  }

  .rte-service-head h2{
    font-size:38px;
  }

  .rte-service-block{
    grid-template-columns:1fr;
    gap:24px;
    padding:24px;
  }

  .rte-reverse .rte-service-image,
  .rte-reverse .rte-service-content{
    order:initial;
  }

  .rte-service-image{
    min-height:300px;
  }

  .rte-service-content{
    padding:34px;
  }
}

/* Mobile */
@media(max-width:767px){
  .rte-service-head{
    margin-bottom:45px;
  }

  .rte-service-head h2{
    font-size:30px;
  }

  .rte-service-head p{
    font-size:15px;
  }

  .rte-service-block{
    margin-bottom:45px;
    padding:16px;
    border-radius:22px;
  }

  .rte-service-image{
    min-height:260px;
    border-radius:18px;
  }

  .rte-service-content{
    padding:85px 20px;
    border-radius:18px;
  }

  .rte-service-content h2{
    font-size:25px;
  }

  .rte-service-content p{
    font-size:15px;
  }

  .rte-service-cta{
    flex-direction:column;
  }

  .rte-btn-primary,
  .rte-btn-secondary{
    width:100%;
  }
}
