/* GLOBAL RESET & FONT */
    html, body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
      background: #ffffff;
      color: #374151;
      line-height: 1.5 !important;
      scroll-behavior: smooth;
    }
    *, *::before, *::after {
      box-sizing: border-box;
    }
    html, body, button, input, textarea, select, a, h1, h2, h3, h4, h5, h6, p, li, span, div, nav, header, footer, section {
      font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif !important;
    }
    body {
      padding-top: 70px; /* fixed header offset */
    }img{max-width: 100%;
      height: auto;
      vertical-align: middle;}
    a {
      color: #082f49;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    /* CONTAINER */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    /* HEADER (fixed) */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #082f49;
      z-index: 1000;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      min-height: 64px;
      display: flex;
      align-items: center;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
    }
    .logo-area {
      display: flex;
      align-items: center;
    }
    .logo-area a {
      display: inline-block;
      line-height: 1 !important;
    }
    .logo-area img {
      display: block;
      height: 40px;
      width: auto;
    }
    /* desktop nav */
    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .nav-links li {
      display: inline-block;
    }
    .nav-links a {
      color: #ffffff;
      font-size: 16px !important;
      font-weight: 500 !important;
      padding: 6px 0;
      transition: color 0.2s ease;
      text-decoration: none;
      background: transparent;
    }
    .nav-links a:hover {
      color: #fecaca;
      text-decoration: none;
    }
    .nav-links .signin-btn {
      background: #ffffff;
      color: #082f49;
      padding: 8px 22px;
      border-radius: 40px;
      font-weight: 600 !important;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }
    .nav-links .signin-btn:hover {
      background: #fecaca;
      color: #082f49;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    /* hamburger (mobile) */
    .hamburger {
      display: none;
      position: absolute;
      left: 16px;
      top: 16px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px 8px;
      z-index: 1100;
    }
    .hamburger span {
      display: block;
      width: 28px;
      height: 3px;
      background: #ffffff;
      margin: 5px 0;
      border-radius: 4px;
      transition: 0.2s;
    }
    /* mobile menu panel */
    .mobile-menu-panel {
      display: none;
      position: fixed;
      top: 64px;
      left: 0;
      width: 100%;
      background: #082f49;
      padding: 20px 24px 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
      z-index: 999;
    }
    .mobile-menu-panel.open {
      display: block;
    }
    .mobile-menu-panel ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    .mobile-menu-panel li {
      width: 100%;
    }
    .mobile-menu-panel a {
      display: block;
      width: 100%;
      text-align: left;
      color: #ffffff;
      font-size: 18px !important;
      font-weight: 500 !important;
      padding: 8px 0;
      text-decoration: none;
      transition: color 0.2s;
    }
    .mobile-menu-panel a:hover {
      color: #fecaca;
    }
    .mobile-menu-panel .signin-btn-mobile {
      background: #ffffff;
      color: #082f49;
      padding: 10px 22px;
      border-radius: 40px;
      font-weight: 600 !important;
      display: inline-block;
      width: auto;
      text-align: center;
      margin-top: 6px;
    }
    .mobile-menu-panel .signin-btn-mobile:hover {
      background: #fecaca;
      color: #082f49;
    }
    /* SECTIONS general */
    section {
      padding: 60px 0;
    }
    .section-title {
      font-size: 32px !important;
      font-weight: 700 !important;
      color: #082f49;
      margin-top: 0;
      margin-bottom: 24px;
      letter-spacing: -0.02em !important;
    }
    .section-sub {
      font-size: 18px !important;
      color: #374151;
      max-width: 800px;
      margin-bottom: 32px;
    }
    .bg-soft {
      background: #f9fafb;
    }
    .bg-secondary-block {
      background: #374151;
      color: #ffffff;
    }
    .bg-secondary-block .section-title {
      color: #ffffff;
    }
    .bg-secondary-block .section-sub {
      color: #e5e7eb;
    }
    .text-neutral {
      color: #374151;
    }
    .btn-primary {
      display: inline-block;
      background: #082f49;
      color: #ffffff;
      font-weight: 600 !important;
      padding: 12px 32px;
      border-radius: 40px;
      border: none;
      cursor: pointer;
      font-size: 16px !important;
      transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      text-decoration: none;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .btn-primary:hover {
      background: #fecaca;
      color: #082f49;
      box-shadow: 0 6px 14px rgba(0,0,0,0.08);
    }
    .btn-outline {
      background: transparent;
      border: 2px solid #082f49;
      color: #082f49;
    }
    .btn-outline:hover {
      background: #082f49;
      color: #ffffff;
    }
    /* cards / grid */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .card {
      background: #ffffff;
      border-radius: 20px;
      padding: 28px 24px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.04);
      transition: box-shadow 0.25s ease, transform 0.2s;
      border: 1px solid #f0f0f0;
    }
    .card:hover {
      box-shadow: 0 12px 28px rgba(8,47,73,0.12);
      transform: translateY(-3px);
    }
    .card h3 {
      font-size: 22px !important;
      color: #082f49;
      margin-top: 0;
      margin-bottom: 12px;
    }
    .card p {
      color: #374151;
      font-size: 16px !important;
      line-height: 1.5 !important;
    }
    .badge {
      background: #fecaca;
      color: #082f49;
      font-weight: 600 !important;
      padding: 4px 14px;
      border-radius: 40px;
      display: inline-block;
      font-size: 14px !important;
    }
    /* dynamic containers — left aligned, full width */
    .dynamic-feed {
      width: 100%;
      text-align: left;
    }
    .dynamic-feed > div {
      width: 100%;
    }
    .community-latest-dynamic-blogs-container,
    .community-latest-dynamic-events-container,
    .community-latest-dynamic-crowdfunding-container,
    .community-latest-dynamic-storefront-container {
      width: 100%;
      display: block;
      text-align: left;
    }
    /* support / faq */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
    }
    .faq-item {
      background: #ffffff;
      border-radius: 20px;
      padding: 24px;
      border: 1px solid #e5e7eb;
    }
    .faq-item h4 {
      font-size: 20px !important;
      color: #082f49;
      margin-top: 0;
      margin-bottom: 10px;
    }
    .faq-item p {
      color: #374151;
      margin: 0;
    }
    /* FOOTER */
    .site-footer {
      background: #082f49 !important;
      color: #ffffff !important;
      padding: 40px 20px !important;
      text-align: center !important;
    }
    .site-footer a {
      color: #ffffff !important;
      text-decoration: none !important;
    }
    .site-footer a:hover {
      text-decoration: none !important;
      color: #fecaca !important;
    }
    .footer-links {
      list-style: none;
      margin: 0 0 16px 0;
      padding: 0;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 28px;
    }
    .footer-links li {
      display: inline-block;
    }
    .footer-links a {
      font-size: 16px !important;
      font-weight: 500 !important;
    }
    .footer-copy {
      font-size: 15px !important;
      opacity: 0.9;
      margin: 8px 0 0;
    }
    .footer-copy a {
      font-weight: 500 !important;
    }
    /* responsiveness */
    @media (max-width: 768px) {
      .header-inner {
        justify-content: center;
      }
      .logo-area {
        margin: 0 auto;
      }
      .nav-links {
        display: none;
      }
      .hamburger {
        display: block;
      }
      .grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .section-title {
        font-size: 28px !important;
      }
      .mobile-menu-panel ul {
        align-items: flex-start;
        text-align: left;
      }
      .mobile-menu-panel a {
        text-align: left;
      }
    }
    @media (min-width: 769px) {
      .hamburger {
        display: none !important;
      }
      .mobile-menu-panel {
        display: none !important;
      }
    }
    /* extra left alignment for mobile menu */
    @media (max-width: 768px) {
      .mobile-menu-panel ul {
        align-items: flex-start !important;
        text-align: left !important;
      }
      .mobile-menu-panel a {
        display: block;
        width: 100%;
        text-align: left !important;
      }
    }
    /* image previews inside dynamic containers: preserve visibility */
    .community-latest-dynamic-blogs-container img,
    .community-latest-dynamic-events-container img,
    .community-latest-dynamic-crowdfunding-container img,
    .community-latest-dynamic-storefront-container img {
      display: inline-block !important;
      max-width: 100%;
      height: auto;
      opacity: 1 !important;
      visibility: visible !important;
    }
