#contact-detail {
  max-width: 900px;
  margin: 4rem auto;
  padding: 2rem;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.7;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: background 0.3s, color 0.3s;
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Header */
.contact-detail {
  text-align: center;
  margin-bottom: 2.5rem;
}


.contact-detail h1 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 2rem;
}

.contact-detail a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.contact-detail a:hover {
  text-decoration: underline;
}
