.container-section-with-border-radious {
  border-radius: 20px;
}
.mt-100 {
  margin-top: 100px;
}
.mt-180 {
  margin-top: 180px;
}

.text-color-white {
  color: #fff;
}
.text-color-blue {
  color: #323a7d;
}
.text-color-gold {
  color: #d8b66f;
}

.border-radius-20 {
  border-radius: 20px;
}

.width-80-percent {
  width: 80%;
}

.card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 30px;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.icon-placeholder {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
