.card-container {
  perspective: 1000px;
  width: 100%;
  max-width: 400px;
}

.card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  /* animation: float 3s ease-in-out infinite; */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  /* transform: translateY(-10px); */
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.card:hover {
  animation: none;
}

.header {
  text-align: center;
  margin-bottom: 28px;
  border-bottom: 3px solid #38495a;
  padding-bottom: 20px;
}

.name {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.title {
  font-size: 14px;
  color: #38495a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.company {
  font-size: 12px;
  color: #718096;
  font-weight: 500;
}

.contact-section {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #2d3748;
  line-height: 1.4;
}

.contact-item span {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
  width: 1.35rem;
}

.contact-item a[href] {
  color: #38495a;
  text-decoration: none;
}

.address {
  flex: 1;
}

.footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 12px;
  text-align: center;
  font-size: 11px;
  color: #a0aec0;
}

.links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.link-btn {
  display: inline-block;
  padding: 8px 12px;
  background: #38495a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.link-btn:hover {
  background: #51708b;
}

@media (max-width: 480px) {
  .card {
    padding: 24px;
  }

  .name {
    font-size: 20px;
  }

  .title {
    font-size: 12px;
  }

  .contact-item {
    font-size: 12px;
  }

  .link-btn {
    font-size: 11px;
    padding: 6px 10px;
  }
}
