.info-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
  font-size: 1.2rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.info-card .meta {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.info-card li:last-child {
  border-bottom: none;
}

.info-card li::before {
  content: '✓';
  color: #2ecc71;
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Tech Skills Section */
.tech-skills-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.tech-skills-section h3 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.tech-icons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
}

.tech-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: #2ecc71;
}

.tech-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
