body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background: #d8f3dc; /* hijau muda kalem */
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.my-photo {
  width: 250px;
  margin: 20px 0;
}

.links {
  list-style: none;
  padding: 0;
  width: 100%;
  max-width: 400px;
}

.link-card {
  display: flex;
  align-items: center; /* ikon dan teks sejajar vertikal */
  gap: 10px; /* jarak antara ikon dan teks */
  background: white;
  margin: 10px;
  border-radius: 10px;
  padding: 15px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.link-card:hover {
  background: #c7e8ca;
}

.link-icon {
  font-size: 24px;
}

.link-text {
  font-size: 16px;
  font-weight: 600;
}

.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-cta a {
  background: #52b788;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.floating-cta a:hover {
  background: #40916c;
}

.promo-banner img {
  width: 100%;
  max-width: 400px;
  margin: 20px 0;
}

.sosmed a {
  margin: 0 10px;
  color: #333;
  font-size: 24px;
}

.copyright {
  margin: 20px 0;
  font-size: 14px;
  color: #666;
}

@media (max-width: 600px) {
  .link-card {
    flex-direction: row; /* tetap horizontal di mobile */
    align-items: center;
  }

  .floating-cta {
    right: 10px;
    bottom: 10px;
  }

  .floating-cta a {
    padding: 8px 12px;
    font-size: 14px;
  }
}
