/* Background */
.body-bg {
  background-color: #d6bcc1; /* soft pink-beige like mockup */
}

/* Profile Card */
.profile-card {
  background-color: #fdd9e6; /* pink card */
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
}

/* Logo */
.logo-img {
  width: 110px;
  height: auto;
}

/* Company Name */
.company-name {
  font-weight: 700;
  color: #4a006e;
  margin-bottom: 5px;
}

.tagline {
  font-size: 15px;
  color: #333;
}

/* Contact Icons */
.contact-icons .icon-link {
  color: #800080;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s;
}

.contact-icons .icon-link:hover {
  color: #ff007f;
}

/* Links Buttons */
.links-container {
  margin-top: 20px;
}

.link-btn {
  background: #fff;
  border-radius: 12px;
  padding: 12px 20px;
  margin: 10px 0;
  text-decoration: none;
  color: #4a006e;
  font-weight: 500;
  font-size: 18px;
  box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.link-btn:hover {
  background: #f5e0f7;
  transform: translateY(-2px);
}

.link-btn i {
  font-size: 20px;
}