@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #4a4a4a 0%, #6a6a6a 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.visit-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  width: 100%;
  padding: 60px 50px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-section {
  margin-bottom: 40px;
}

.profile-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #6a6a6a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.profile-image:hover {
  transform: scale(1.05);
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.title {
  font-size: 20px;
  font-weight: 500;
  color: #5a5a5a;
  margin-bottom: 5px;
}

.info-section {
  border-top: 2px solid rgba(106, 106, 106, 0.2);
  padding-top: 30px;
}

.description {
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 35px;
  font-weight: 400;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: rgba(106, 106, 106, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(106, 106, 106, 0.15);
  transform: translateY(-2px);
}

.label {
  font-size: 13px;
  font-weight: 600;
  color: #5a5a5a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.value {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
}

.email {
  color: #5a5a5a;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.email::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 50%;
  background-color: #5a5a5a;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.email:hover {
  color: #4a4a4a;
}

.email:hover::after {
  width: 100%;
}

@media (max-width: 640px) {
  .visit-card {
    padding: 40px 30px;
  }

  .name {
    font-size: 36px;
  }

  .title {
    font-size: 18px;
  }

  .description {
    font-size: 16px;
  }

  .profile-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .visit-card {
    padding: 30px 20px;
  }

  .name {
    font-size: 32px;
  }

  .title {
    font-size: 16px;
  }

  .description {
    font-size: 15px;
  }

  .value {
    font-size: 16px;
  }

  .profile-image {
    width: 130px;
    height: 130px;
  }
}
