
/** Shared content pages - scoped arb-* classes **/

.arb-page-section{
  position: relative;
}

.arb-page-hero{
  background: linear-gradient(135deg, #fff8f0 0%, #f3fff8 55%, #fff 100%);
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 0px 0px 0px 32px;
  margin-bottom: 30px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
}
.arb-page-hero2 {
  background: linear-gradient(135deg, #fff8f0 0%, #f3fff8 55%, #fff 100%);
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 40px 0px 30px 32px;
}

.arb-page-hero img { max-height: 200px; border-radius: 0px 20px 20px 0 }
.arb-page-hero__label{
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--theme-color);
  background: #fff;
  border: 1px solid #ffbf7b;
  border-radius: 20px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.arb-page-hero h2{
  font-size: 34px;
  line-height: 44px;
  margin-bottom: 12px;
}

.arb-page-hero p{
  margin: 0;
  max-width: 820px;
  font-size: 16px;
  line-height: 28px;
  color: #555;
}

.arb-page-block{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.arb-page-block h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 14px;
}

.arb-page-block p{
  font-size: 15px;
  line-height: 26px;
  color: #555;
  margin-bottom: 14px;
}

.arb-page-block p:last-child{
  margin-bottom: 0;
}

.arb-page-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.arb-page-list li{
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 24px;
  color: #444;
}

.arb-page-list li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--theme-color);
}

.arb-about-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.arb-about-stat{
  text-align: center;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px 16px;
  background: #fafafa;
}

.arb-about-stat h4{
  font-size: 32px;
  line-height: 38px;
  color: var(--theme-color);
  margin-bottom: 4px;
}

.arb-about-stat p{
  margin: 0;
  font-size: 14px;
  color: #666;
}

.arb-about-promises{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.arb-about-promise{
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 18px 16px;
  background: linear-gradient(135deg, #fff8f0 0%, #fff 100%);
  font-size: 15px;
  font-weight: 700;
  color: var(--title-color);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.arb-about-promise i{
  color: var(--theme-color);
  margin-top: 2px;
}

.arb-about-reviews{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.arb-about-review{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.arb-about-review p{
  font-size: 14px;
  line-height: 24px;
  color: #555;
  margin-bottom: 14px;
  font-style: italic;
}

.arb-about-review strong{
  display: block;
  font-size: 15px;
  color: var(--title-color);
}

.arb-benchmark-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.arb-benchmark-card{
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.arb-benchmark-card__icon{
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #fff3e7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.arb-benchmark-card__icon img{
  max-width: 80px;
  max-height: 80px;
}

.arb-benchmark-card h4{
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

.arb-contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.arb-contact-info{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.arb-contact-card{
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  background: #fff;
  display: flex;
  gap: 14px;
  align-items: flex-start;

  min-height: 110px;
}

.arb-contact-card__icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff3e7;
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.arb-contact-card h5{
  font-size: 16px;
  margin-bottom: 4px;
}

.arb-contact-card p,
.arb-contact-card a{
  margin: 0;
  font-size: 14px;
  line-height: 22px;
  color: #555;
  text-decoration: none;
}

.arb-contact-card a:hover{
  color: var(--theme-color);
}

.arb-contact-form{
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.arb-contact-form h3{
  font-size: 24px;
  margin-bottom: 18px;
}

.arb-contact-form .arb-contact-field{
  margin-bottom: 16px;
}

.arb-contact-form label{
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--title-color);
}

.arb-contact-form label span{
  color: var(--theme-color);
}

.arb-contact-form input,
.arb-contact-form textarea{
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  outline: none;
  background: #fff;
  color: #444;
}

.arb-contact-form input{
  height: 46px;
}

.arb-contact-form textarea{
  min-height: 60px;
  resize: vertical;
}

.arb-contact-form input:focus,
.arb-contact-form textarea:focus{
  border-color: var(--theme-color);
}

.arb-contact-form .theme-btn{
  border: none;
  cursor: pointer;
}

@media only screen and (max-width: 991px){
  .arb-about-stats,
  .arb-about-reviews,
  .arb-benchmark-grid,
  .arb-contact-grid,
  .arb-about-promises{
    grid-template-columns: 1fr;
  }

  .arb-page-hero{
    padding: 26px 20px;
  }

  .arb-page-hero h2{
    font-size: 28px;
    line-height: 36px;
  }
}
