body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #6aacda;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

.card {
  background-color: #c0f1fc;
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 460px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.profile-img {
  width: 50%;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 25px;
  border: 4px solid #ffffff;
}

.button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 90%;
  max-width: 400px;
  min-width: 250px;
  margin: 12px auto;
  padding: 14px 20px;
  background-color: #ffffff;
  color: #333333;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.25s ease;
}

.button:hover {
  background-color: #f2f2f2;
}

.button .icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
}


.address {
  margin-top: 30px;
  color: #ffffff;
  text-align: center;
  font-size: 22px;
  line-height: 1.6;
}

.address a {
  color: #ffffff;
  text-decoration: underline;
}

.address-header {
  margin-bottom: 8px;
}

.address .icon {
  width: 25px;
  height: 25px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}


@media (max-width: 400px) {
  .profile-img {
    width: 110px;
    height: 110px;
  }

  .button {
    font-size: 15px;
    padding: 12px 16px;
    min-width: 200px;
  }

  .address {
    font-size: 14px;
  }
}
