
body {
  font-family: 'Poppins', sans-serif;
  background-color: #0d1117;
  color: #e2e8f0;
}
.section-box {
  background-color: #161b22;
  border: 1px solid #30363d;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.section-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.text-accent {
  color: #BDC581;
}
.gold-link {
    color: #BDC581;
}

