.gos-features-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.gos-feature-card {
  width: 120px;
  height: 320px;
  background-color: var(--bg-color);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  position: relative;
}

.gos-feature-card.active,
.gos-feature-card:hover {
  width: 400px;
  background-color: var(--bg-hover);
}

.gos-feature-content {
  padding: 20px;
  transition: all 0.4s ease;
}

.gos-card-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.gos-card-title {
  font-size: 18px;
  transition: all 0.4s ease;
}

.gos-card-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.gos-feature-card.active .gos-card-description,
.gos-feature-card:hover .gos-card-description {
  opacity: 1;
  max-height: 200px;
}

.gos-feature-card:hover .gos-card-icon {
  transform: scale(1.1);
}
