body {
  
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f2f2f2;
  color: #333;
}

.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.profile-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.profession {
  font-size: 1.1rem;
  color: #777;
  margin-bottom: 20px;
}

.social-links a {
  color: #555;
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #007bff;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #fc3c35;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

button:hover {
  background-color: #f7251e;
}

.experience-card {
  background: white;
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hidden {
  display: none;
}
