/* Page Background */
body {
  background: white;
  color: black;
}

/* Header */
.custom-header {
  background: #0b1a39;
  color: white;
  padding: 20px 0;
  border-bottom: 3px solid #d4af37;
}

.custom-header p {
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Section Title */
.section-title {
  color: #0b1a39;
  font-weight: 700;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 5px;
}

/* Golden bordered content box */
.custom-box {
  border: 2px solid #d4af37;
  background: white;
  color: black;
  border-radius: 5px;
}

/* Footer */
.custom-footer {
  background: #0b1a39;
  color: white;
  padding: 12px 0;
  margin-top: 30px;
  border-top: 3px solid #d4af37;
  text-align: center;
}

/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
