html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    box-sizing: border-box;
    overflow-x: hidden
  }
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background: #fff;
    color: #111;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    padding: 0;
    margin: 0;
  }
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    box-sizing: border-box;
  }
  .logo-bar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    z-index: 1000;
  }
  .logo-img {
    max-width: 250px;
    height: 48px;
    object-fit: contain;
  }
  .menu-bar {
    position: sticky;
    top: 72px; /* height of .logo-bar */
    width: 100%;
    background: #111;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    z-index: 999;
  }
  .menu-links {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
  }
  .menu-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    transition: color 0.2s;
    padding: 6px 12px;
    border-radius: 4px;
  }
  .menu-links a:hover {
    color: #007aff;
    background: rgba(255,255,255,0.08);
  }
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
    margin-left: auto;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
  }
  .hamburger span {
    height: 4px;
    width: 100%;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(72px + 56px);
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 120;
    padding: 16px 0 12px 0;
    border-radius: 0 0 12px 12px;
    transition: max-height 0.3s cubic-bezier(.4,0,.2,1), opacity 0.3s cubic-bezier(.4,0,.2,1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
  }
  .mobile-menu.open {
    display: flex;
    max-height: 400px;
    opacity: 1;
  }
  .mobile-menu a {
    color: #007aff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 24px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    text-align: left;
  }
  .mobile-menu a:hover {
    background: #f3f4f6;
    color: #005bb5;
  }
  @media (max-width: 800px) {
    .menu-links {
      display: none;
    }
    .hamburger {
      display: flex;
    }
    .mobile-menu {
      position: absolute;
      top: calc(72px + 56px);
      left: 0;
      width: 100%;
    }
  }
  @media (min-width: 801px) {
    .mobile-menu {
      display: none !important;
    }
    .hamburger {
      display: none !important;
    }
    .menu-links {
      display: flex !important;
    }
  }
  .hero-banner-image {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    background: #f7f7f7;
    overflow-x: hidden;
  }
  .hero-banner-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0 auto;
  }
  .promo-bar {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 32px 0 28px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
  }
  .promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    width: 100%;
    max-width: 600px;
  }
  .promo-title {
  color: #fff;
  font-weight: 700;
  text-align: center;
  }
  .promo-subtitle {
    color: #bbb;
    margin-bottom: 12px;
    text-align: center;
  }
  .promo-buttons {
  display: flex;
  gap: 18px;
  margin-top: 8px;
  justify-content: center;
  }
  .promo-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* space between image and text if you add text */
  background: #111;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 10px 32px;
  font-size: 1.08rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  }
  .promo-btn img {
    display: block;
    height: 32px; /* or adjust as needed */
    width: auto;
    margin: 0;
  }
  .promo-btn:hover {
    background: #555;
    color: #111;
    border-color: #555;
  }
  .promo-btn a:hover img,
  .promo-btn a:hover svg {
    filter: none;
    fill: #111 !important;
    color: #111 !important;
  }
  .promo-btn:disabled,
  .promo-btn.disabled {
    background: #444;
    color: #bbb;
    border-color: #444;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.7;
  }
  .promo-btn-note {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.8;
  margin-top: 4px;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 400;
  }

  @media (max-width: 800px) {
    .promo-buttons {
      flex-direction: column;
      gap: 14px;
      width: 100%;
      align-items: center;
    }
    .promo-btn {
      width: 100%;
      max-width: 320px;
      text-align: center;
    }
  }
  h1, h2, h3 {
    color: #111;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 12px;
  }
  h1 {
    margin-top: 24px;
    font-size: 3.2rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2.1rem;
  }
  .tile-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 32px 0 32px 0;
    width: 100%;
  }
  .tile {
    background: #f3f4f6;
    border-radius: 12px;
    padding: 18px 14px;
    box-shadow: none;
    margin: 0;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .tile-icon {
    font-size: 40px;
    color: #007aff;
    margin-bottom: 8px;
  }
  .caption {
    font-size: 0.95rem;
    color: #555;
  }
  .faq-section {
    margin: 32px 0;
    width: 100%;
  }
  .faq-search-bar {
  position: relative;
  width: 100%;
  margin: 0 auto 24px auto;
}

.faq-search-bar input[type="text"] {
  width: 100%;
  padding: 10px 16px 10px 40px; /* left padding for icon */
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
}

.faq-search-bar input[type="text"]::placeholder {
  color: #aaa;
}

.faq-search-bar::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="9" r="7" stroke="%23bbb" stroke-width="2.2" fill="none"/><rect x="14.2" y="14.2" width="5" height="2.2" rx="1.1" transform="rotate(45 14.2 14.2)" fill="%23bbb"/></svg>') no-repeat center center;
  background-size: 20px 20px;
  pointer-events: none;
  opacity: 0.85;
}
  .faq-accordion {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #e0e0e0;
  }
  .faq-accordion summary {
  cursor: pointer;
  font-weight: 600;
  padding: 16px 18px;
  background: #f7f7f7;
  color: #111;
  outline: none;
  font-size: 1.1rem;
  transition: background 0.2s;
  position: relative;
  padding-right: 32px;
  list-style: none;
}
.faq-accordion summary::-webkit-details-marker {
  display: none;
}
.faq-accordion summary::marker {
  display: none;
}
.faq-accordion summary::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 25px;
  height: 25px;
  pointer-events: none;
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.2s;
  background: url('data:image/svg+xml;utf8,<svg fill="gray" xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 20 20"><path d="M7 7l3 3-3 3" stroke="gray" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
  background-size: 25px 25px;
}
.faq-accordion[open] summary::after {
  transform: translateY(-50%) rotate(90deg);
}
  .faq-accordion > *:not(summary) {
    padding: 12px 18px 18px 18px;
    color: #333;
    font-size: 1rem;
  }
  .collapsible-section {
    margin: 32px 0;
    width: 100%;
    border-radius: 8px;
    background: #f7f7f7;
    border: 1px solid #e0e0e0;
    overflow: hidden;
  }
  .collapsible-header {
    cursor: pointer;
    font-weight: 600;
    padding: 16px 18px;
    background: #e6f0ff;
    color: #007aff;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
    outline: none;
    transition: background 0.2s;
  }
  .collapsible-header.open {
    background: #d0e7ff;
  }
  .collapsible-content {
    display: none;
    padding: 12px 18px 18px 18px;
    color: #333;
    font-size: 1rem;
  }
  .collapsible-content.open {
    display: block;
  }
  footer {
    background: #111;
    color: #fff;
    padding: 40px 0 24px 0;
    border-radius: 0;
    margin-top: 48px;
    width: 100%;
  }
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    align-items: start; /* Top align columns */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }
  .footer-logo img
  {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0;
  }
  .footer-logo img,
  .footer-socials img {
    filter: brightness(0) invert(1);
  }
  .footer-socials svg {
    fill: #fff !important;
    color: #fff !important;
  }
  .footer-title,
  .footer-container h3 {
    color: #fff !important;
  }
  .footer-links, .footer-support {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links li, .footer-support li {
    margin-bottom: 8px;
  }
  .footer-links a, .footer-support a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover, .footer-support a:hover {
    color: #fff;
  }
  .footer-bottom {
    border-top: 1px solid #222;
    margin-top: 32px;
    padding-top: 16px;
    text-align: center;
    color: #bbb;
    font-size: 0.95rem;
  }
  .footer-socials {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
  }
  .footer-socials a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    color: #fff;
    border: 1.5px solid #fff;
    border-radius: 12px;
    padding: 10px 22px;
    font-size: 1.08rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    margin-bottom: 8px;
  }
  .footer-socials a:hover {
    background: #bbb;
    color: #111;
    border-color: #111;
  }
  .footer-socials img,
  .footer-socials svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
  }
  .footer-socials a:hover img,
  .footer-socials a:hover svg {
    filter: none;
    fill: #111 !important;
    color: #111 !important;
  }
  .divider {
  width: 100%;
  height: 1px;
  background: #bbb;
  margin: 32px 0;
  border: none;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: #444;
  margin: 24px 0 0 0;
  border: none;
}
@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 8px;
  }
  .footer-socials {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}