.contact__header {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.contact__info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.contact__info__item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #f2f3f7;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
}

.contact__info__item i {
  font-size: 32px;
  color: #2c98f0;
}

.contact__info__item h3 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 5px;
}

.contact__info__item a,
.contact__info__item p {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.contact__info__item a:hover {
  color: #2c98f0;
}

.contact__input,
.contact__textarea {
  height: 54px;
  width: 100%;
  font-family: "Quicksand", serif;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 20px;
  line-height: 1.4;
  margin-bottom: 15px;
  background-color: #f2f3f7;
  border: none;
  outline: none;
}

.contact__textarea {
  resize: vertical;
  height: 130px;
}

.contact__button {
  cursor: pointer;
  background: #2c98f0;
  color: #fff;
  margin-top: 10px;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  letter-spacing: 1px;
  border-radius: 4px;
  padding: 12px 20px;
  border: none;
  transition: background 0.3s;
}

.contact__button:hover {
  background: #1a7bbf;
}
