body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* background-color: #f8f8f8; */
    margin-top: 120px;
  }
  
  .privacyPolicy, .termsAndConditions {
    max-width: 800px;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .fadeIn {
    animation: fadeIn 1s ease-in;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  .privacyPolicyHeading, .termsAndConditionsHeading {
    text-align: center;
    color: #333333;
    font-size: 2em;
    margin-bottom: 10px;
  }
  
  .spangleWelcome {
    text-align: center;
    color: #777777;
    font-size: 1.2em;
    margin-bottom: 20px;
  }
  
  .privacyParagraphIntro, .termsParagraphIntro {
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .policyLeadingSection, .serviceLeadingSection {
    margin-bottom: 30px;
  }
  
  .policyLeadingSection h4, .serviceLeadingSection h4 {
    display: flex;
    align-items: center;
    color: #333333;
    font-size: 1.5em;
    margin-bottom: 10px;
  }
  
  .sn {
    font-weight: bold;
    margin-right: 10px;
  }
  
  .st {
    font-weight: normal;
  }
  
  .policyInfoContainer, .serviceInfoContainer {
    margin-bottom: 20px;
  }
  
  .policyLead, .serviceLead {
    font-weight: bold;
    color: #555555;
    margin-bottom: 5px;
  }
  
  .policyDetails, .serviceDetails {
    color: #777777;
    line-height: 1.6;
  }
  
  .policyList {
    color: #777777;
    line-height: 1.6;
    padding-left: 20px;
  }
  
  .sectionLine {
    height: 2px;
    width: 100%;
    margin-top: 10px;
  }
  
  .lineColorBlue {
    background-color: #007BFF;
  }
  
  .lineColorOrange {
    background-color: #FFA500;
  }
  
  .lineColorGreen {
    background-color: #28a745;
  }
  
  .lineColorPurple {
    background-color: #6f42c1;
  }
  
  .lineColorRed {
    background-color: #dc3545;
  }
  
  .contactInfo {
    color: #555555;
    line-height: 1.6;
  }
  
  .closePolicy, .closeTerms {
    text-align: center;
    color: #007BFF;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 20px;
  }
  