.social-icons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;     /* ← key change: align icons together */
  padding: 10px 0;
}

.social-icon-box {
  background-color: #f0f0f0;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon-box i {
  font-size: 20px;
  color: #333;

}

.social-icons-row a {
  text-decoration: none;   /* Removes underline */
  color: inherit;          /* Prevents blue color */
}


.social-icon-box:hover {
        background-color: #e0e0e0;
}

.info-row {
        margin-bottom: 10px;
}

.social-icon-box {
  max-width: 40px;
  flex: 1 1 40px;
}
