* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #eaeff2; /* softer light gray */
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 1rem;
}

.profile-card {
  background-color: #ffffff; /* clean white card */
  border-radius: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.profile-header {
  text-align: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.75rem;
}

.profile-header h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.profile-header p {
  margin-bottom: 0.5rem;
}

.time {
  font-weight: bold;
  color: #007bff;
}

.social-section h2,
.list-block h2 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.social-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  text-decoration: none;
  color: #007bff;
  transition: color 0.2s;
}

.social-links a:hover,
.social-links a:focus {
  text-decoration: underline;
  color: #0056b3;
}

.lists {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: center;
}

/* ✅ Center Hobbies & Dislikes properly */
.list-block {
  text-align: center;
}

.list-block ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: inline-block;
  text-align: left;
}

.list-block ul li {
  margin: 0.3rem 0;
}

/* Responsive design */
@media (max-width: 600px) {
  .profile-card {
    padding: 1rem;
  }

  .lists {
    grid-template-columns: 1fr;
  }
}
section{
text-align: center
}