.page-hero {
  padding: 8rem 0 4rem;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  letter-spacing: 0.2em;
}

.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.contact-intro h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-intro p {
  font-size: 1.1rem;
  color: var(--secondary-color);
  line-height: 1.9;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-social-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-detail {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-detail a {
  color: var(--accent-color);
}

.contact-note {
  color: var(--secondary-color);
  font-size: 0.95rem;
}

.contact-note-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--light-bg);
  border-radius: 10px;
}

.contact-note-section h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.contact-note-section ol {
  list-style-position: inside;
  list-style-type: decimal;
  margin-bottom: 2rem;
}

.contact-note-section li {
  padding: 1rem;
  background: white;
  margin-bottom: 0.8rem;
  border-radius: 5px;
  color: var(--primary-color);
  font-weight: 500;
}

.note-text {
  color: var(--secondary-color);
  font-style: italic;
}

@media (max-width: 768px) {
  .page-hero { padding: 6rem 0 3rem; }
  .page-title { font-size: 2.2rem; }
  .contact-methods { grid-template-columns: 1fr; }
  .contact-note-section { padding: 2rem; }
}
