.services__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-content: center;
  padding-top: 2rem;
}

.services__content {
  background: var(--container-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services__icon {
  font-size: 2.5rem;
  color: var(--first-color);
  margin-bottom: 1rem;
  display: inline-block;
}

.services__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services__description {
  font-size: 0.95rem;
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.services__button {
  font-size: 0.9rem;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .services__container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .services__icon {
    font-size: 1.8rem;
  }

  .services__title {
    font-size: 1.1rem;
  }

  .services__description {
    font-size: 0.85rem;
  }

  .services__content {
    padding: 1.2rem 1rem;
  }
}

@media screen and (max-width: 480px) {
  .services__icon {
    font-size: 1.6rem;
  }

  .services__title {
    font-size: 1rem;
  }

  .services__description {
    font-size: 0.8rem;
  }

  .services__content {
    padding: 1rem;
  }
}
