
  
  /* Body and Global Styles */
  body {
    font-family: 'Roboto', sans-serif; /* Primary font */
    line-height: 1.6;
    font-size: 16px; /* Default font size */
  }
  
  /* Headings */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica', sans-serif; /* Secondary font for headings */
    font-weight: bold;
  }
  
  /* Main Heading (H1) */
  h1 {
    font-size: 36px;
    line-height: 1.2;

  }
  
  /* Secondary Heading (H2) */
  h2 {
    font-size: 28px;
    line-height: 1.3;

  }
  
  /* Subheading (H3) */
  h3 {
    font-size: 20px;
    line-height: 1.4;
  }
  
  /* Body Text */
  p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1.5em; /* Spacing between paragraphs */
  }
  


  /* Link Text */
  a {
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
  /* Captions and Small Text */
  small {
    font-size: 12px;
    color: #777777;
    display: block;
    margin-top: 10px;
  }
  
  
  /* Responsive Typography (Mobile-first) */
  @media (max-width: 768px) {
    body {
      font-size: 14px; /* Reduce font size on smaller screens */
    }
  
    h1 {
      font-size: 30px;
    }
  
    h2 {
      font-size: 24px;
    }
  
    h3 {
      font-size: 18px;
    }

    h4 {
      font-size: 17px;
    }

    h5 {
      font-size: 16px;
    }
  
  
    p, ul li, ul li ul li {
      font-size: 14px;
    }

    #footer a{
      font-size: 14px;
    }
  
    button, .btn {
      font-size: 14px;
      padding: 10px 20px;
    }
  }
  
  /* Fluid Typography */
  @media (max-width: 480px) {
    /* p{
      margin-bottom:10px;
    } */

    h1 {
      font-size: 26px;
    }
  
    h2 {
      font-size: 22px;
    }
  
    p, ul li, ul li ul li, ul li a  {
      font-size: 14px;
    }

    #footer a {
      font-size: 14px;
  }
  }
 