/* CONTACTS GRID CONTAINER */
.contact-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 16px;
}

/* INDIVIDUAL BLOCK */
.contact-item {
  flex: 1 1 calc(25% - 32px);
  text-align: center;
  min-width: 220px;
}

/* ICON BOX */
.contact-icon {
  width: 64px;
  height: 64px;
  background: #0A9E01;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.contact-icon img {
  width: 32px;
  height: 32px;
}

/* TITLE & CONTENT */
.contact-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.contact-content {
  font-size: 16px;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  white-space: normal;
}

/* MOBILE STACKING */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    width: 100%;
    max-width: 320px;
    margin-bottom: 24px;
  }

  .contact-title {
    font-size: 18px;
  }

  .contact-content {
    font-size: 14px;
  }

  .contact-icon {
    width: 56px;
    height: 56px;
  }

  .contact-icon img {
    width: 28px;
    height: 28px;
  }
}
