body {
  background: #f6f8fa;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  max-width: 350px;
  width: 100%;
  text-align: center;
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 4px solid #3e84c5;
}

h1 {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
  color: #222;
}

.salutation {
    font-weight: 500;
    margin: 0.4rem 0 0.4rem 0;
  }

.job-title {
  color: #3e84c5;
  font-weight: 500;
  margin: 0.6rem 0 1rem 0;
}

.company {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  text-decoration: none;
  color: #222;
  background: #f2f4f7;
  padding: 0.5rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item span {
  font-size: 1.2rem;
}

.contact-item:hover {
  background: #e6eaf0;
  color: #007AFF;
}

.save-contact-btn {
    display: block;
    margin: 0.2rem auto 0 auto;
    background: #3e84c5;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.09);
    transition: background 0.3s;
  }
  
  .save-contact-btn:hover {
    background: #005BB5;
  }

@media (max-width: 500px) {
  .card {
    max-width: 95vw;
    padding: 1.1rem 0.7rem;
    font-size: 0.99rem;
  }
}
