.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary);
  font-size: 1.2rem;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.3s ease;
}

.contact-method i {
  font-size: 1.5rem;
}

.contact-method:hover {
  color: #f0e6b1;
  transform: scale(1.05);
}

@media (min-width: 600px) {
  .contact-options {
    flex-direction: row;
    justify-content: center;
  }
}