.contact-section {
  padding: 100px 0;
  max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 50px;
  border: 1px solid rgba(0,0,0,0.05);
}

.contact-card h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 24px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.contact-avatar {
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
}

.contact-details h3 {
  font-size: 22px;
  color: var(--text-color);
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-light);
  font-size: 16px;
}

.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 15px;
  font-size: 16px;
  color: var(--text-color);
}

.contact-list li strong {
  color: var(--primary-color);
  display: inline-block;
  width: 120px;
}

.contact-list li a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition-speed);
}

.contact-list li a:hover {
  color: var(--primary-color);
}
