.strength-section {
  padding: 60px 0;
  background: #ffffff;
}

.strength-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.strength-item {
  display: flex;
  background: #ffffff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(166, 155, 155, 0.08);
}
@media (max-width: 768px) {
  .strength-item {
    padding: 30px 20px;
    flex-direction: column;
  }
}
.strength-item__number {
  width: 50px;
  height: auto;
  flex-shrink: 0;
  background: #e8f5e9;
  color: #006637;
  font-size: 28px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .strength-item__number {
    width: 100%;
    padding: 5px 0;
    margin-bottom: 16px;
    font-size: 22px;
  }
}
.strength-item__content {
  padding: 20px;
}
@media (max-width: 768px) {
  .strength-item__content {
    padding: 0;
  }
}
.strength-item__title {
  font-size: 20px;
  font-weight: 700;
  color: #333333;
  margin: 12px 0;
  padding: 0 15px 10px;
}
.strength-item__title:before {
  display: inline-block;
  position: relative;
  left: -10px;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #006637;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .strength-item__title {
    font-size: 18px;
  }
}
.strength-item__text {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
  margin: 0 0 20px;
}
