.contact-card {
  border: 1px solid #dee2e6;
  border-radius: 6px;
  overflow: hidden;
  font-size: 16px;
}

.contact-row {
  display: flex;
  padding: 14px 16px;
  border-bottom: 1px solid #dee2e6;
}

.contact-row:nth-child(odd) {
  background-color: #f8f9fa;
}

.contact-row:last-child {
  border-bottom: none;
}

.label {
  width: 220px;
  font-weight: 600;
  color: #333;
}

.value {
  flex: 1;
  color: #555;
}

.value a {
  color: #0d6efd;
  text-decoration: none;
}

.value a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contact-row {
    flex-direction: column;
  }

  .label {
    width: 100%;
    margin-bottom: 5px;
  }
}
