body {
  background-color: #f5f7fa;
  font-family: "Poppins", sans-serif;
}

/* Section Box */
.section-box {
  background: #ffffff;
  border-left: 5px solid #e3b505;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* Titles */
.section-title {
  color: #0b1a39;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Image boxes (same as NCC style) */
.image-box img {
  width: 100%;
  border: 4px solid #e3b505;
  border-radius: 12px;
}

/* Table */
.table-gold {
  background-color: #e3b505;
  color: #0b1a39;
  font-weight: 700;
}

table td, table th {
  border-color: #e3b505 !important;
}

/* Footer */
footer {
  font-size: 0.9rem;
}

.btn-outline-gold {
  border: 2px solid #e3b505;
  color: #0b1a39;
}

.btn-outline-gold:hover {
  background-color: #e3b505;
  color: #0b1a39;
}
/* Make footer stick to the bottom without touching HTML */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
