* {
  margin: 0;
  padding: 0;
}

.contact-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem 0rem;
  text-align: center;
}

.contact-row {
  width: 80%;
  display: flex;
  align-items: start;
  justify-content: center;
}

@media only screen and (max-width: 700px) {
  /* For mobile phones: */
  .contact-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.contact-card {
  /* background: red; */
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  font-size: larger;
}

.contact-card p {
  font-size: medium;
  color: black;
}

.contact-card ul {
  /* background: green; */
  font-size: medium;
  list-style: none;
  gap: 1rem;
  line-height: 1.5rem;
}

.contact-card button {
  background-color: #cc0000;
  color: white;
  padding: 1rem 1rem;
  width: 50%;
  font-size: large;
  font-weight: normal;
  border: none;
  cursor: pointer;
  min-width: 10rem;
}

.contact-card button:hover {
  background-color: #b80000;
}