main {
  padding: 80px 0;
  min-height: calc(100vh - 130px);
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  padding: 50px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.subtitle {
  color: #666;
  font-size: 18px;
  margin-bottom: 40px;
}

.email-container {
  margin: 30px 0 40px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
  display: inline-block;
}

.email-link {
  color: #4361ee;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.email-link:hover {
  color: #2845d3;
  text-decoration: underline;
}

.linkedin-link {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.linkedin-link:hover {
  color: val(--primary-color-dark);
  text-decoration: underline;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-links a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f1f3f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: #4361ee;
  color: white;
  transform: translateY(-3px);
}

.divider {
  height: 1px;
  background-color: #eee;
  margin: 40px 0;
}

@media (max-width: 768px) {
  main {
    padding: 40px 0;
  }

  .contact-card {
    padding: 30px 20px;
  }

  h1 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }
}
