/* Signs Your Business Could Benefit from Managed IT Section */
.signs-managed-it {
  background-color: #f8f9fa;
  padding: 80px 0;
}

.signs-managed-it .section-title h2 {
  text-align: center;
  margin-bottom: 60px;
  font-size: 36px;
  color: #1e4356;
}

.signs-ladder {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.sign-item {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
}

.sign-box {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  height: 100%;
}

.sign-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(30, 67, 86, 0.3);
  border: 2px solid #1e4356;
}

.sign-icon {
  font-size: 40px;
  color: #1e4356;
  margin-bottom: 15px;
  display: block;
}

.sign-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1e4356;
  line-height: 1.3;
}

.sign-box p {
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .signs-ladder {
    flex-direction: column;
  }
  
  .sign-item {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
