html, body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
}

.oswald-font {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  /* font-size: 1.2em; */
  font-weight: 400;
  font-style: normal;
}
.roboto-condensed-font {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.header {
  /* background-image: url("../images/red_background.png"); */
  /* background-size: 100% 100%; */
  background-color: #dc3545;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: white;
  /* padding: 1em 1em 1em 3em; */
}
.header h1 {
  font-size: 3rem;
  /* padding-top: 20px; */
}

.header p {
  font-size: 1.25rem;
  /* padding-bottom: 20px; */
}
.red-background {
  display: inline-block;
  background-image: url("../images/red_background.png");
  background-repeat: no-repeat;
  background-size: 100% 100%; /* or cover/contain, tweak as needed */
  padding: 10px 80px 10px 8px; /* some breathing space */
}
.li-bold {
  font-weight: bold;
}
.footer_custom {
  /* background-image: url("../images/footer.png"); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  border-top: none;
}
@media (min-width: 768px) {
.header {
  background-size: contain;
  }
}
 

.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.2rem;
}
.accordion {
    --bs-accordion-border-color: none;
}
/* Override Bootstrap accordion styles */
.custom-accordion .accordion-item {
  border: none;
  max-width: 600px;
  margin: 20px auto;
}

.custom-accordion .accordion-button {
  padding: 10px 0;
  background: none;
  box-shadow: none;
  font-weight: bold;
  font-size: 1.5rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: inherit;
  background: none;
}

/* Remove default Bootstrap arrow and add custom one */
.custom-accordion .accordion-button::after {
  display: none;
}

.custom-accordion .accordion-button::before {
  content: '›';
  font-size: 2rem;
  margin-right: 10px;
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.custom-accordion .accordion-button:not(.collapsed)::before {
  transform: rotate(90deg);
}

/* Style accordion body */
.custom-accordion .accordion-body {
  padding: 10px 0 10px 25px; /* Add padding to align with text after arrow */
  font-size: 1.2rem;
}

.navbar {
  font-size: 1.2rem;
}

main {
  flex: 1; 
}

.footer_custom {
  margin-top: auto; /* Pushes footer to bottom */
}

a {
  text-decoration: none;
  color: rgb(3, 3, 162);
}

a:hover {
  text-decoration: underline;
}

.nav-link {
  text-decoration: none;
}

.nav-link:hover {
  text-decoration: none;
  color: rgb(244, 4, 12);
}