body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

.cards-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 2rem;
  min-height: 100vh;
}

.profile-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 400px;
}

.profile-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #667eea;
  display: block;
  margin: 0 auto 1rem;
}

.profile-card h1 {
  color: #333;
  margin: 0.5rem 0;
  font-size: 1.8rem;
}

.profile-card h2 {
  color: #667eea;
  margin: 0.5rem 0;
  font-weight: normal;
  font-size: 1.2rem;
}

.profile-card p {
  color: #666;
  margin: 1rem 0;
  font-style: italic;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.links a {
  text-decoration: none;
  width: 100%;
}

.links button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.links button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

@media (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .profile-card {
    width: calc(100% - 2rem);
    max-width: 100%;
    padding: 1.5rem;
    box-sizing: border-box;
  }
}

/* QR Code Section - NEW */
.qr-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #f0f0f0;
}

.qr-section h3 {
  color: #667eea;
  margin: 0 0 1.5rem 0;
  font-size: 1.3rem;
  font-weight: bold;
}

.qr-codes {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.qr-item {
  text-align: center;
}

.qr-label {
  color: #333;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
  font-size: 0.9rem;
}

.qr-item img {
  width: auto !important;
  max-width: 200px;
  height: auto !important;
  border-radius: 0 !important;
  border: none !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.qr-item a {
  display: inline-block;
}

.qr-item img:hover {
  transform: scale(1.05);
}