.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  max-width: 593px;
  gap: 20px;
}

.contact-info {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  flex: 1;
}

.contact-info strong {
  font-size: 14px;
  color: #2a2a2a;
}

.email-link {
  color: #f04628;
  font-style: normal;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.contact-image img {
  width: 175px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}