#offers-services{
  padding:80px 20px;
  background:#f8fafc;
  font-family:'Segoe UI',sans-serif;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.container{
  max-width:1200px;
  margin:auto;
}

.section-header{
  text-align:center;
  margin-bottom:40px;
}

.section-header.small{
  margin-top:70px;
}

.tag{
  display:inline-block;
  background:#e8f0ff;
  color:#2563eb;
  padding:8px 18px;
  border-radius:30px;
  font-size:12px;
  font-weight:700;
  letter-spacing:1px;
}

.section-header h2{
  font-size:42px;
  margin:18px 0;
  color:#111827;
}

.section-header p{
  max-width:700px;
  margin:auto;
  color:#6b7280;
  line-height:1.8;
}

.trust-bar{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:15px;
  margin-bottom:60px;
}

.trust-bar div{
  background:#fff;
  padding:18px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 4px 15px rgba(0,0,0,.05);
  font-weight:600;
}

.trust-bar i{
  color:#16a34a;
  margin-right:8px;
}

.offer-grid,
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
}

.offer-card,
.service-card{
  background:#fff;
  border-radius:20px;
  padding:30px;
  text-decoration:none;
  color:inherit;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.35s ease;
  position:relative;
}

.offer-card:hover,
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.offer-card i,
.service-card i{
  font-size:45px;
  color:#2563eb;
  margin-bottom:20px;
}

.offer-card h3,
.service-card h3{
  color:#111827;
  margin-bottom:10px;
}

.offer-card p,
.service-card p{
  color:#6b7280;
  line-height:1.7;
}

.offer-badge{
  position:absolute;
  top:18px;
  right:18px;
  background:#16a34a;
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:7px 12px;
  border-radius:30px;
}

.cta-box{
  margin-top:80px;
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  color:#fff;
  padding:50px;
  border-radius:24px;
  text-align:center;
}

.cta-box h3{
  font-size:32px;
  margin-bottom:10px;
}

.cta-box p{
  opacity:.9;
  margin-bottom:25px;
}

.cta-btn{
  display:inline-block;
  background:#25D366;
  color:#fff;
  text-decoration:none;
  padding:14px 30px;
  border-radius:50px;
  font-weight:600;
  transition:.3s;
}

.cta-btn:hover{
  background:#1ebe57;
  transform:scale(1.05);
}

@media(max-width:768px){

  .section-header h2{
    font-size:clamp(22px, 5vw, 30px);
  }

  .cta-box{
    padding:30px 16px;
  }

  .cta-box h3{
    font-size:clamp(18px, 4vw, 24px);
  }

  .offer-card,
  .service-card{
    padding:20px;
  }

  .offer-card i,
  .service-card i{
    font-size:32px;
  }
}

@media(max-width:480px){

  .section-header{
    margin-bottom:24px;
  }

  .section-header h2{
    font-size:20px;
  }

  .section-header p{
    font-size:13px;
  }

  .trust-bar{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .trust-bar div{
    padding:12px;
    font-size:13px;
  }

  .trust-bar i{
    font-size:14px;
  }

  .offer-grid,
  .services-grid{
    grid-template-columns:1fr;
    gap:12px;
  }

  .offer-card,
  .service-card{
    padding:16px;
  }

  .offer-card i,
  .service-card i{
    font-size:28px;
    margin-bottom:12px;
  }

  .offer-card h3,
  .service-card h3{
    font-size:16px;
  }

  .offer-card p,
  .service-card p{
    font-size:13px;
  }

  .offer-badge{
    font-size:11px;
    padding:5px 10px;
  }

  .cta-box{
    padding:24px 16px;
    margin-top:40px;
  }

  .cta-box h3{
    font-size:18px;
  }

  .cta-box p{
    font-size:13px;
  }

  .cta-btn{
    padding:12px 24px;
    font-size:14px;
  }
}