:root{
  --orange:#3f51b5;
  --green:#3f51b5;
}

/* TITLE */
.section-title{
  font-size:32px;
  font-weight:700;
  color:#111;
}

.section-text{
  color:#555;
  margin-top:10px;
  line-height:1.7;
}

/* IMAGE */
.image-box{
  border-radius:10px;
  overflow:hidden;
  border:1px solid #eee;
}

/* BLOCK */
.block-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:15px;
}

/* ACCORDION */
.accordion-button:not(.collapsed){
  background:var(--orange);
  color:#fff;
}

/* POINTS */
.points-list{
  list-style:none;
  padding:0;
}

.points-list li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid #eee;
}

.points-list i{
  color:var(--green);
}

/* CONTACT */
.contact-box{
  border:1px solid #eee;
  padding:25px;
  border-radius:10px;
  background:#fff;
}

.sticky-box{
  position:sticky;
  top:100px;
}

/* BUTTON */
.btn-main{
  background:var(--orange);
  color:#fff;
  padding:12px;
  border-radius:6px;
  text-align:center;
  display:inline-block;
  text-decoration:none;
}

.btn-main:hover{
  background:#303f9f;
}

.btn-outline{
  border:1px solid var(--green);
  color:var(--green);
  padding:12px;
  border-radius:6px;
  text-align:center;
  text-decoration:none;
}

.btn-outline:hover{
  background:var(--green);
  color:#fff;
}

/* CTA */
.cta-box{
  background:#f9fafb;
  padding:40px;
  border-radius:10px;
  border:1px solid #eee;
}

.cta-box h2{
  font-size:28px;
  font-weight:700;
}

/* RESPONSIVE */
@media(max-width:991px){
  .sticky-box{
    position:relative;
    top:0;
    margin-top:20px;
  }
}
