/* 1. Force the Header Color and Remove the Default Gradient */
.container-header {
  background-color: #c68000 !important;
  background-image: none !important; 
}

/* 2. Force the Primary Buttons */
.btn-primary {
  background-color: #c68000 !important;
  border-color: #c68000 !important;
}

/* Button Hover State (A slightly darker orange) */
.btn-primary:hover, 
.btn-primary:active, 
.btn-primary:focus {
  background-color: #a36900 !important; 
  border-color: #a36900 !important;
}

/* 3. Force the Link Colors */
a {
  color: #c68000;
}

a:hover {
  color: #a36900;
}

/* 4. Force the Footer Background and Text Color */
.container-footer {
  background-color: #c68000 !important;
  background-image: none !important;
  color: #ffffff !important; 
}

/* 5. Make Footer Links White for Readability */
.container-footer a {
  color: #ffffff !important;
  text-decoration: underline;
}

.container-footer a:hover {
  color: #f1f1f1 !important; 
}