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

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
  text-align: center;
}

.profile-container {
  max-width: 400px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.profile-header {
  margin-bottom: 20px;
}

.profile-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-size: 1.8rem;
  margin: 10px 0;
}

.profession {
  color: #777;
}

.follow-section {
  margin-top: 10%;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: white;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: scale(1.1);
}

.whatsapp {
  background-color: #25d366;
}

.facebook {
  background-color: #3b5998;
}

.tiktok {
  background: linear-gradient(135deg, #69c9d0 0%, #ee1d52 100%);
}

.instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

@media (max-width: 600px) {
  .profile-container {
    width: 100%;
    padding: 15px;
  }

  .name {
    font-size: 1.6rem;
  }

  .profession {
    font-size: 1rem;
  }
}
