/* Reset */
:root {
    --primary-color: #ea5b21;
  }
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  /* Loader */
  .qfm-preloader {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #1FA1A8 0%, #8AC9A8 48%, #E0B24A 100%);
    z-index: 9999;
  }
  .qfm-preloader__ring {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: grid;
    place-items: center;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.1);
    animation: none;
  }
  .qfm-preloader__logo {
    width: 95px;
    height: 95px;
    object-fit: contain;
  }
  .qfm-preloader__dots {
    margin-top: 18px;
    display: flex;
    gap: 8px;
  }
  .qfm-preloader__dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #E36C2F;
    animation: dotPulse 1.2s ease-in-out infinite;
  }
  .qfm-preloader__dots span:nth-child(2) { animation-delay: 0.2s; }
  .qfm-preloader__dots span:nth-child(3) { animation-delay: 0.4s; }
  /* Header */
  .header {
    position: fixed;
    inset-block-start: 0;
    inset-inline-start: 0;
    inline-size: 100%;
    background-color: #fff;
    box-shadow: 0px 6px 12px -3px rgba(4, 97, 165, 0.1);
  }
  .theme-dark .header{
     background-color: rgba(255, 255, 255, 0.15);
   }
   .header-end {
     color: #C3CAD9;
   }
   .theme-dark .header-end {
       color: #C3CAD9;
   }
  .header-container {
    max-inline-size: 1290px;
    margin-inline: auto;
    padding: 1.45rem 1.6rem;
    border-radius: 0 0 0.625rem 0.625rem;
  }
  .header-top-line {
    padding: 1rem;
    background-color: #eeded9;
  }
  .theme-dark .header-top-line {
    background-color: #eeded9;
  }
  .header .logo {
    max-block-size: 2.315rem;
  }
  @media (max-width: 1024px) {
    .header {
      display: none;
    }
  }
  .placeholder {
    block-size: 0.825rem;
    inline-size: 3rem;
    background-color: #F5F5F5;
    border-radius: 0.3rem;
  }
  .theme-dark .placeholder {
    background-color: rgba(224, 224, 224, 0.2);
  }
  .placeholder-wide {
    inline-size: 20rem;
  }
  /* Common Classes */
  .d-flex {
    display: flex;
  }
  .align-items-center {
    align-items: center;
  }
  .justify-content-center {
    justify-content: center;
  }
  .justify-content-between {
    justify-content: space-between;
  }
  .flex-column {
    flex-direction: column;
  }
  .text-center {
    text-align: center;
  }
  .gap-3 {
    gap: 1rem;
  }
  .gap-4 {
    gap: 1.5rem;
  }
  .gap-5 {
    gap: 3rem;
  }
  @keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  @keyframes dotPulse {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-6px); opacity: 1; }
  }
