body {
    font-family: "Manrope", sans-serif;
}

.nav-link {
    color: #000;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.btn-join {
    background-color: #f1f1f1;
    color: #000;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.375rem 1rem;
    border: none;
    box-shadow: 0px 0px 0px 1px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05)) inset, 0px -2px 1px 0px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05)) inset, 0px 1px 2px 0px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05));
}

.btn-learn {
    background-color: #004AAD;
    color: white;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.375rem 1rem;
    border: none;
    margin-left: 10px;
    box-shadow: 0px 32px 24px 0px rgba(255, 255, 255, 0.05) inset, 0px 2px 1px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 1px var(--Opacity-Neutral-Darkest-15, rgba(3, 9, 13, 0.15)) inset, 0px -2px 1px 0px rgba(0, 0, 0, 0.20) inset, 0px 1px 2px 0px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05));
}

.navbar-nav .nav-item .dropdown-toggle::after {
    margin-left: 0.5rem;
}

.navbar {
    padding: 1rem;
}

.navbar-brand {
    font-family: 'Cursive', sans-serif;
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand img{
    max-height: 50px;
}

.hero-section {
    height: 80vh;
    background-image: url('/images/hero-1920.webp');
    background-image: image-set(url('/images/hero-1280.webp') 1x, url('/images/hero-1920.webp') 2x);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -10px;
    position: relative;
}

/* Serve a lighter hero image on smaller screens and for users saving data */
@media (max-width: 991.98px) {
  .hero-section { background-image: url('/images/hero-1280.webp'); }
}

@media (prefers-reduced-data: reduce) {
  .hero-section { background-image: url('/images/hero-1280.webp'); }
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* dark overlay */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .btn{
    border-radius: 999px;
    box-shadow: 0px 0px 0px 1px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05)) inset, 0px -2px 1px 0px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05)) inset, 0px 1px 2px 0px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05)) !important;
}

.qBox{
    margin: 15px 0px;
    border: 1px solid #ccc;
}

.support{
    margin: 40px 0px;
}

.support i{
    font-size: 30px;
    margin-bottom: 15px;
}

.support img {
    width: 38px;margin-bottom: 15px;
}

.support p {
    margin-bottom: 10px;
}

.mobileFooter a {
    color: #212529;
    margin: 0px 15px;
    text-decoration: underline !important;
}

.list-unstyled li a{
    text-decoration: none;
    color: #000;
}

.navbar-nav li{
    margin: 0px 10px;
}

.shadowStyle{
    box-shadow: 0px 32px 24px 0px rgba(255, 255, 255, 0.05) inset, 0px 2px 1px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 1px var(--Opacity-Neutral-Darkest-15, rgba(3, 9, 13, 0.15)) inset, 0px -2px 1px 0px rgba(0, 0, 0, 0.20) inset, 0px 1px 2px 0px var(--Opacity-Neutral-Darkest-5, rgba(3, 9, 13, 0.05));
}

/* Footer layout adjustments */
footer p.mb-4 {
    font-size: 12px;
    line-height: 1.5;
}

/* Stack footer link columns into a single column */
footer .col-md-6 > .row,
footer .col-md-4 > .row {
    display: block;
}
footer .col-md-6 > .row > .col-12,
footer .col-md-4 > .row > [class^='col-'] {
    max-width: 100%;
    flex: 0 0 100%;
}

@media (max-width: 767.98px) {
  .mobileFooter a {
    display: block;
    margin: 15px 0px;
    text-decoration: underline !important;
  }
  .list-unstyled{
    margin: 15px 0px;
  }
}

/* Mobile navbar layout: keep logo and toggler on one line, cap logo to 60% */
@media (max-width: 575.98px) {
  .navbar .container {
    flex-wrap: wrap; /* allow collapsed menu to sit below brand/toggler */
  }
  .navbar-brand {
    max-width: 60vw;
    flex: 0 1 60vw;
  }
  .navbar-brand img {
    width: 100%;
    height: auto;
    max-height: 40px;
  }
  .navbar-toggler {
    margin-left: auto;
  }
  .navbar-collapse {
    flex-basis: 100%; /* make collapsed content full width on next line */
  }
  .navbar-collapse.collapse.show {
    margin-top: 0.5rem; /* spacing below the header row */
  }
}

/* Standardized square icon container (49px) for feature highlights */
.icon-49 {
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #212529; /* match Bootstrap body text color */
}

.icon-49 i {
    font-size: 34px; /* larger icon within 49px square */
    line-height: 1;
}

/* Prevent wrapping for specific headings */
.no-wrap {
    white-space: nowrap;
}

@media (max-width: 575.98px) {
  .no-wrap {
    font-size: 1.75rem; /* slightly smaller on XS to avoid overflow */
  }
}

/* FAQ page: Bootstrap accordion aligned with prior card look (bg-light, #ccc border) */
.faq-accordion .accordion-item {
    border: 1px solid #ccc;
    border-radius: 0;
    margin-bottom: 1rem;
    background-color: var(--bs-light);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background-color: var(--bs-light);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    padding: 1rem 1.25rem;
    box-shadow: none;
    white-space: normal;
    text-align: left;
    align-items: flex-start;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--bs-light);
    color: #000;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: none;
    margin-top: 0.2em;
    flex-shrink: 0;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button:hover {
    background-color: #ebebeb;
}

.faq-accordion .accordion-body {
    background-color: var(--bs-light);
    padding: 0 1.25rem 1rem 1.25rem;
}

.faq-accordion .accordion-collapse {
    border-top: none;
}
