
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  line-height: 1.6;
  text-align: left;
  font-size: 20px; /* Increase from default 16px */
  line-height: 1.6;
}

h1 {
  font-family: Oswald, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem; /* ~40px if 1rem = 16px */
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

h2 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.25rem; /* ~32px */
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.75rem; /* ~28px */
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

h4 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

h5 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

h6 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero {
  background: linear-gradient(to right, #111, #333);
  color: white;
  padding: 60px 20px;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

footer {
  background-color: #222;
  color: #ccc;
  padding: 1.5rem 0;
  text-align: center !important;
}

footer .container {
  width: 100%;
  text-align: center !important;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-light {
  border-color: #fff;
  color: #fff;
}

.btn-outline-light:hover {
  background-color: #fff;
  color: #000;
}

.accordion-button:not(.collapsed) {
  background-color: #e9ecef;
  color: #000;
  font-weight: bold;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #007bff;
  padding-left: 1em;
}

.blockquote-footer {
  display: block;
  color: #ffffff;
  margin-top: 0.5rem;
  padding-left: 1em;
  border-left: 4px solid transparent;
}

/* Explicit left-align for content, except buttons */
p, ul, ol, li, blockquote, .lead, .accordion-body, form, label, input, textarea, .container, .row, .col {
  text-align: left !important;
}

/* Ensure buttons are centered */
.button-wrapper,
.text-center .btn,
.text-center button {
  text-align: center !important;
}

.button-wrapper .btn,
.button-wrapper button {
  display: inline-block !important;
  /* margin: 20px auto !important; */
  float: none !important;
}

/* Add inner padding to section containers */
section > .container {
  padding-left: 40px;
  padding-right: 40px;
  border-radius: 8px;
}

.faq-section .faq-item {
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-section .question {
  background-color: #f9f9f9;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
}

.faq-section .answer {
  display: none;
  padding: 15px;
  background-color: #fff;
  font-size: 20px;
}

img {
  max-width: 100%;
  display: block; /* Prevents inline gaps */
}

  .signup-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: sans-serif;
  }

  .signup-form h3 {
    margin-bottom: 15px;
    font-size: 20px;
    color: #222;
  }

  .signup-form label {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: #444;
  }

  .signup-form input[type="text"],
  .signup-form input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .signup-form .selectbox {
    width: 100%;
    min-width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
  }

  .signup-form button {
    margin-top: 20px;
    background-color: #c30000;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
  }

  .signup-form button:hover {
    background-color: #a30000;
  }

  #selected-date-display {
    font-weight: 600;
    margin-bottom: 10px;
    color: #007700;
  }

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

