* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #f5f5f5;
}

.container {
  text-align: center;
  padding: 40px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.profile-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333333;
}

p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #555555;
}

a.download-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #059ba7;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
  margin-bottom: 30px;
}

a.download-btn:hover {
  /* background-color: #0056b3; */
  background-color: #00708e;
}

.socials a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.socials a img {
  width: 40px;
  height: 40px;
}

.socials a:hover {
  transform: scale(1.2);
}

.download-btn-english {
  color: #777;
  display: inline-block;
  margin-top: 20px;
}
.download-btn-english:hover {
  color: #00708e;
}

/* 📱 Adaptation mobile */
@media (max-width: 480px) {
  .container {
    padding: 20px;
    width: 95%;
  }

  .profile-img {
    width: 100px;
    height: 100px;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.95rem;
  }

  a.download-btn {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }

  .socials a img {
    width: 30px;
    height: 30px;
  }
}
