 
.service-strengths-section {
  max-width: 1300px;
  margin: 0 auto;
  background-color: #f1f8fa;
  padding: 0px 40px 40px;
  border-radius: 8px;
}
 
.service-strengths-title {
  text-align: center;
  font-size: 30px;
  color: #1e293b;
  margin-bottom: 30px;
  font-weight: 700;
}

.service-strengths-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.service-strength-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.2s ease;
}
 
.service-strength-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
 
.service-strength-card p {
  font-size: 18px;
  line-height: 1.4;
  color: #000;
  margin: 0;
  
}
 
.strength-icon-box {
  width: 45px;
  height: 45px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-size: 40px;
}
 
@media (max-width: 600px) {
  .service-strengths-section {
    padding:0px 20px 40px;
  }
  
}
@media (max-width: 820px) {
.service-strengths-wrapper {
    grid-template-columns: 1fr;
  }}
@media (max-width: 460px) {
  .service-strengths-title
  {
    font-size:24px;
}