.area-companies-container {
  max-width: 1166px;
  margin: 0 auto;
  padding: 40px 15px;
}
.area-companies-heading {
  font-family: 'Heebo-Bold', sans-serif;
  font-weight: bold;
  font-size: 22px;
  color: #333;
  margin-bottom: 20px;
}
.area-companies-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-company-link {
  display: inline-block;
  padding: 8px 16px;
  background: #f5f5f5;
  border-radius: 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-family: 'Heebo-Regular';
  transition: background 0.2s ease;
}
.area-company-link:hover {
  background: #e8f5e8;
  color: #2e7d32;
  text-decoration: none;
}

@media (max-width: 768px) {
  .area-companies-container {
    padding: 30px 15px;
  }
  .area-companies-heading {
    font-size: 19px;
  }
  .area-company-link {
    font-size: 13px;
    padding: 6px 12px;
  }
}
