.accordion-container {
	width: 100%;
}
.accordion-container .accordion-tab {
	width: 100%;
	border-bottom: 1px solid #977529;
	border-top: 0;
	position: relative;
	z-index: 2;
	padding: 10px 15px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	background: #2a3678;
}

.accordion-container .accordion-tab span {
	margin: 0;
	color: #977529;
	float: left;
	font-size: 18px;
	pointer-events: none;
	line-height: 1.666;
	font-weight: normal;
}
.accordion-container .accordion-tab * {
	pointer-events: none;
}
.accordion-container .accordion-tab h4 {
	margin: 0 2.5rem 0 0;
	font-size: 1rem;
}
.accordion-container .accordion--indicator {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
	width: 1.25em;
	height: 1.25em;
	overflow: hidden;
}
.accordion-container .accordion--indicator .icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
	overflow: hidden;
	transition: all 0.25s ease;
}
.accordion-container .accordion-tab[aria-expanded='true'] .accordion--indicator .icon.icon__plus {
	opacity: 0;
	top: -100%;
}
.accordion-container .accordion-tab[aria-expanded='true'] .accordion--indicator .icon.icon__minus {
	opacity: 1;
}
.accordion-container .accordion-tab[aria-expanded='false'] .accordion--indicator .icon__minus {
	top: 100%;
}
.accordion-container .accordion-content {
	overflow: hidden;
	-webkit-transition: max-height 0.25s linear;
	-o-transition: max-height 0.25s linear;
	transition: max-height 0.25s linear;
	background: #d9d9d9;
}
.accordion-container .accordion-content[aria-hidden='false'] {
	-webkit-transition: max-height 0.25s linear;
	-o-transition: max-height 0.25s linear;
	transition: max-height 0.25s linear;
	width: 100%;
	position: relative;
	z-index: 1;
}
.accordion-container .accordion-content[aria-hidden='true'] {
	max-height: 0 !important;
}
.accordion-container .accordion-content .accordion-content--wrapper {
	padding: 1rem;
	border: 1px solid #977529;
	border-top: 3px solid #977529;
}
.accordion-tab h2 {
    margin-bottom: 0em;
	color: #f9f9f9f9!important;
}

.job-posting a {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px 0;
  background-color: #214871; /* Dark Blue background */
  color: white; /* White text */
  text-align: center;
  text-decoration: none; /* Removes underline */
  font-size: 16px;
  border-radius: 5px; /* Rounded corners */
  border: none; /* No border */
  cursor: pointer; /* Cursor changes to pointer on hover */
  transition: background-color 0.3s; /* Smooth background color change on hover */
}

.job-posting a:hover {
  background-color: #0056b3; /* Darker blue background on hover */
}