.illustrations__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;

  width: 80%;
  margin: 50px auto;
}

.illustrations__container__item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.illustrations__container__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s;
}

.illustrations__container__item p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.5;
}

.illustrations__container__item h3 {
  font-size: 1.2rem;
  color: #1b3c88;
  font-weight: 700;

  margin: 10px 0 5px;
}

.city__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  gap: 10px;
  padding-bottom: 15px;
}

.city__buttons a {
  background-color: #ffffff;
  color: #368ed6;

  border: 1px solid #368ed6;
  border-radius: 6px;

  padding: 8px 14px;
  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 500;

  transition: background-color 0.25s ease, color 0.25s ease,
    border-color 0.25s ease;
}

.city__buttons a:hover {
  background: linear-gradient(135deg, #368ed6, #56c596);
  color: white;
  border-color: transparent;
}

.reviews__section {
  background-color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.reviews__section h2 {
  font-size: 1.8rem;
  color: #1b3c88;
  margin-bottom: 40px;
}

.reviews__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 80%;
  margin: 0 auto;
}

.review__card {
  background-color: #f9fbfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.review__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.user__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold;
  font-size: 1rem;
  margin-right: 10px;
  flex-shrink: 0;
}

.user__info {
  flex-grow: 1;
  text-align: left;
}

.user__info h4 {
  margin: 0;
  font-size: 1rem;
  color: #1b3c88;
  font-weight: bold;
}

.review__stars {
  color: #f4c542;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-top: 2px;
  transition: text-shadow 0.3s ease;
}

.google__logo {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.review__card p {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  line-height: 1.5;
  margin-top: 10px;
}
