* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.profile-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 2px solid #c5a059; /* Gold accent border matching the logo badge */
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.15); /* Subtle gold glow */
}

h1 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.bio {
  color: #a1a1aa;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.link-btn {
  display: block;
  background-color: #121212;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: 1px solid #27272a;
  transition: all 0.2s ease-in-out;
}

.link-btn:hover {
  background-color: #1a1a1a;
  border-color: #c5a059;
  transform: translateY(-1px);
}

/* Contact / Enquiries highlighted button */
.link-btn.highlight {
  background-color: #c5a059;
  border-color: #c5a059;
  color: #000000;
}

.link-btn.highlight:hover {
  background-color: #b08d48;
  border-color: #b08d48;
}