.contact-section {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background-color: var(--background);
  /* Neutral background color for the section */
}

.contact-section div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
  height: 300px;
  width: 350px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s, box-shadow 0.3s;
}

.contact-section div:hover {
  background-color: var(--color-success);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.contact-section div img {
  width: 60px;
  margin-bottom: 10px;
}

.contact-section div h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--color-text-light);
  /* Light color for headings */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for readability */
}

.contact-section div strong {
  font-size: 1.5rem;
  color: var(--color-text-light);
  /* Light color for text */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  /* Subtle shadow for readability */
}

.contact-section div strong a {
  text-decoration: none;
  color: var(--color-link);
  /* Link color */
  font-size: 1.5rem;
}

.contact-section div strong a.email {
  font-size: 1rem;
}

#google-maps-display {
  height: 500px;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  border: 1px solid var(--color-border);
  /* Border color for maps */
  border-radius: 10px;
  /* Rounded corners for maps */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Shadow for maps */
}

#google-maps-display iframe {
  height: 100%;
  width: 100%;
  border: 0;
  border-radius: 10px;
  /* Rounded corners for iframe */
}

.page-title {
  text-align: center;
  font-size: 3rem;
  color: var(--color-text-dark);
  /* Dark color for page title */
  margin-top: 20px;
}

.compliment {
  text-align: center;
  font-size: 1.2rem;
  color: var(--color-text-dark);
  /* Dark color for compliment text */
  margin-bottom: 30px;
}
