/** Shopify CDN: Minification failed

Line 18:12 Expected identifier but found whitespace
Line 18:14 Unexpected "{"
Line 18:23 Expected ":"
Line 18:50 Unexpected "0"
Line 18:53 Unexpected "{"
Line 18:62 Expected ":"
Line 18:91 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:main-page (INDEX:64) */
.page-content-wrapper {
    padding: {{ section.settings.padding_top }}px 0 {{ section.settings.padding_bottom }}px;
    min-height: 450px;
  }

  .page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
  }

  /* Headings - Bold and Prominent with larger sizes */
  .page-content h1,
  .page-content h2,
  .page-content h3,
  .page-content h4,
  .page-content h5,
  .page-content h6 {
    font-weight: 700;
    line-height: 1.3;
    color: rgb(var(--color-foreground));
    margin-top: 0;
    margin-bottom: 16px;
  }

  /* First heading ko top margin nahi chahiye */
  .page-content > h1:first-child,
  .page-content > h2:first-child,
  .page-content > h3:first-child,
  .page-content > h4:first-child {
    margin-top: 0;
  }

  /* Headings ke beech proper spacing - Increased sizes */
  .page-content h1 {
    font-size: 40px; /* 2.5rem = 40px */
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(var(--color-foreground), 0.1);
  }

  .page-content h2 {
    font-size: 32px; /* 2rem = 32px */
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .page-content h3 {
    font-size: 28px; /* 1.75rem = 28px */
    margin-top: 36px;
    margin-bottom: 16px;
  }

  .page-content h4 {
    font-size: 24px; /* 1.5rem = 24px */
    margin-top: 32px;
    margin-bottom: 14px;
  }

  .page-content h5 {
    font-size: 20px; /* 1.25rem = 20px */
    margin-top: 28px;
    margin-bottom: 12px;
  }

  .page-content h6 {
    font-size: 18px; /* 1.125rem = 18px */
    margin-top: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  /* Paragraphs - Standard Sizing */
  .page-content p {
    margin-bottom: 16px;
    line-height: 1.6;
    font-size: 16px;
    color: rgba(var(--color-foreground), 0.8);
  }

  /* Last paragraph ko extra bottom margin */
  .page-content > p:last-child,
  .page-content > *:last-child p:last-child {
    margin-bottom: 32px;
  }

  /* Strong text */
  .page-content strong,
  .page-content b {
    font-weight: 600;
    color: rgb(var(--color-foreground));
  }

  /* Lists - Standard spacing */
  .page-content ul,
  .page-content ol {
    margin: 16px 0 24px 0;
    padding-left: 28px;
    line-height: 1.6;
  }

  .page-content li {
    margin-bottom: 8px;
    color: rgba(var(--color-foreground), 0.8);
    font-size: 16px;
  }

  .page-content li:last-child {
    margin-bottom: 0;
  }

  .page-content ul ul,
  .page-content ol ol,
  .page-content ul ol,
  .page-content ol ul {
    margin: 8px 0;
  }

  /* Last list ko extra bottom margin */
  .page-content > ul:last-child,
  .page-content > ol:last-child {
    margin-bottom: 32px;
  }

  /* Links */
  .page-content a {
    color: rgb(var(--color-link));
    text-decoration: underline;
    transition: all 0.2s ease;
  }

  .page-content a:hover {
    color: rgba(var(--color-link), 0.8);
  }

  /* Images */
  .page-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 32px auto;
    border-radius: 8px;
  }

  /* Blockquotes */
  .page-content blockquote {
    margin: 24px 0;
    padding: 16px 24px;
    border-left: 4px solid rgb(var(--color-foreground));
    background-color: rgba(var(--color-foreground), 0.03);
    font-style: italic;
    color: rgba(var(--color-foreground), 0.75);
  }

  .page-content blockquote p:last-child {
    margin-bottom: 0;
  }

  /* Tables */
  .page-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
  }

  .page-content table th,
  .page-content table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(var(--color-foreground), 0.12);
    font-size: 16px;
  }

  .page-content table th {
    font-weight: 700;
    background-color: rgba(var(--color-foreground), 0.05);
    color: rgb(var(--color-foreground));
  }

  /* Code blocks */
  .page-content code {
    background-color: rgba(var(--color-foreground), 0.06);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
  }

  .page-content pre {
    background-color: rgba(var(--color-foreground), 0.06);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
  }

  .page-content pre code {
    background: none;
    padding: 0;
  }

  /* Horizontal rule */
  .page-content hr {
    border: none;
    border-top: 1px solid rgba(var(--color-foreground), 0.12);
    margin: 32px 0;
  }

  /* Spacing between different elements */
  .page-content p + h2,
  .page-content p + h3,
  .page-content p + h4 {
    margin-top: 40px;
  }

  .page-content ul + h2,
  .page-content ol + h2,
  .page-content ul + h3,
  .page-content ol + h3 {
    margin-top: 40px;
  }

  /* Responsive */
  @media screen and (max-width: 749px) {
    .page-content-wrapper {
      padding: 40px 0 80px;
      min-height: 350px;
    }

    .page-content {
      padding: 0 16px 30px 16px;
    }

    .page-content h1 {
      font-size: 32px; /* Mobile pe 32px */
      margin-top: 32px;
      margin-bottom: 16px;
    }

    .page-content h2 {
      font-size: 28px; /* Mobile pe 28px */
      margin-top: 28px;
      margin-bottom: 14px;
    }

    .page-content h3 {
      font-size: 24px; /* Mobile pe 24px */
      margin-top: 24px;
      margin-bottom: 12px;
    }

    .page-content h4 {
      font-size: 20px; /* Mobile pe 20px */
      margin-top: 20px;
      margin-bottom: 10px;
    }

    .page-content h5 {
      font-size: 18px;
      margin-top: 18px;
      margin-bottom: 10px;
    }

    .page-content h6 {
      font-size: 16px;
      margin-top: 16px;
      margin-bottom: 8px;
    }

    .page-content p {
      font-size: 15px;
      margin-bottom: 14px;
    }

    .page-content > p:last-child,
    .page-content > *:last-child p:last-child {
      margin-bottom: 24px;
    }

    .page-content ul,
    .page-content ol {
      padding-left: 24px;
      margin: 14px 0 20px 0;
    }

    .page-content > ul:last-child,
    .page-content > ol:last-child {
      margin-bottom: 24px;
    }

    .page-content li {
      margin-bottom: 6px;
      font-size: 15px;
    }
  }
/* END_SECTION:main-page */