/* Benefit cards (moved from inline styles in index.html) */

/* Ensure equal height for benefit cards */
#content-section-2 .four.columns {
  display: flex;
  flex-direction: column;
}

#content-section-2 .gdlr-ux.column-service-ux {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

#content-section-2 .gdlr-column-service-item {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.benefit-card {
  max-height: 250px;
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  border-top: 3px solid #F3814E;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(243, 129, 66, 0.15);
}

.benefit-icon {
  font-size: 48px;
  color: #F3814E;
  margin-bottom: 20px;
  display: block;
}

.benefit-title {
  color: #F3814E;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.benefit-content {
  font-size: 14px;
  line-height: 1.7;
  color: #555555;
  flex: 1;
}

.benefit-content ul {
  margin-top: 15px;
  padding-left: 20px;
}

.benefit-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.benefit-content p {
  margin-bottom: 0px;
}

@media (max-width: 768px) {
  .benefit-card {
    /* margin-bottom: 20px; */
  }

  #content-section-2 .four.columns {
    display: block;
  }

  #content-section-2 .gdlr-ux.column-service-ux {
    display: block;
    height: auto;
  }

  #content-section-2 .gdlr-column-service-item {
    display: block;
    height: auto;
  }

  
}






