/* Modern kutulu kart stili */
/* Reduce horizontal gap and allow cards to fill more space */
/* Cards row: allow cards to be wider and reduce gap */
.custom-cards-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 2rem;
  padding-left: 0;
  padding-right: 0;
}
.custom-card-box {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 24px 0 rgba(80, 112, 255, 0.07), 0 1.5px 0 0 #e6e9f0;
  padding: 40px 36px 36px 36px;
  flex: 1 1 0;
  min-width: 320px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s;
  border: 1.5px solid #e6e9f0;
}
.custom-card-box:hover {
  box-shadow: 0 8px 32px 0 rgba(80, 112, 255, 0.13), 0 1.5px 0 0 #e6e9f0;
}
.custom-card-icon {
  background: #f5f7ff;
  border-radius: 16px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.custom-card-icon svg, .custom-card-icon i {
  color: #506fff;
  font-size: 28px;
}
.custom-card-title {
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #181c32;
}
.custom-card-desc {
  color: #6b7280;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .custom-cards-row {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    padding-left: 0;
    padding-right: 0;
  }
  .custom-card-box {
    max-width: 100%;
  }
}
