a {
  color: #FF0000;
}

.alternatelink {
  color: black;
  text-decoration: underline;
}

.alternatelink2 {
  color: black;
  font-style: italic;
  text-decoration: underline;
}

.container-custom {
  padding-bottom: 55px;
  padding-top: 55px;
}

.container-section {
  padding-left: 30%;
  padding-right: 30%;
  padding-top: 30px;
  padding-bottom: 30px;
}

.container-signup {
  padding-left: 30%;
  padding-right: 30%;
}

.section-alternate {
  background-color: #f8f9fa;
}

.btn-red {
    background-color: #FF0000;
    color: white;
}

.heads-up {
  color: #FF0000;
  font-style: italic;
  font-weight: bold;
  text-decoration-line: underline;
}

.logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

.logo-alternative {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.applogo {
  width: 35px;
  margin-left:5px;
  margin-right:5px;
}

.applogoinline {
  width: 20px;
  margin-left:2px;
  margin-right:2px;
}

.footer {
    position:fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #fff;
    color: #555;
    text-align: center;
    padding: 10px 0;
}

#topheader-container {
  width: 100%;
}

.topheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FF0000;
  color: #fff;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  z-index: 1000; /* Ensure it stays above other content */
}

.topheaderlogo {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}

.topheaderlogo-img {
  max-height: 50px; /* Adjust as needed */
  max-width: 100%;
  padding: 2px; /* Adjust as needed */
}

.nav-links {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
}

.nav-links a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.custom-divider {
  width: 35%; /* You can adjust this */
  margin: 4rem auto; /* Centers it with vertical spacing */
  border: none;
  border-top: 1.5px solid #ccc; /* Subtle color */
  position: relative;
}

.highlight-comment {
  font-weight: bold;
}

.highlight-underline {
  font-weight: bold;
  background-color: rgba(255, 0, 0, 0.25); /* light red highlight */
  /*text-decoration: underline;*/
  /*background: linear-gradient(
    to top,
    rgba(255, 0, 0, 0.5) 15%,
    transparent 15%
  );*/
}

.big-quote {
  font-size: 22pt; 
  font-style: italic;
  text-align: center;
}

.speaker {
  font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .container-custom {
    padding-bottom: 55px;
    padding-top: 55px;
  }
  .container-section {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50px;
    left: 0;
    background-color: rgba(255, 0, 0);
    z-index: 1000;
    font-size: 32px;
}

  .nav-links.active {
      display: flex;
  }

  .nav-links a {
      margin: 10px 0;
      text-align: center;
  }

  .menu-toggle {
      display: block;
  }
}