
/* General styling for the Terms and Conditions page */
.terms-and-conditions__body {
    font-family: Arial, sans-serif;
    margin: 20px;
    line-height: 1.6;
  }
  
  /* Main Title, Update Date, and Intro */
  .terms-and-conditions__main-title {
    font-size: 26px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .terms-and-conditions__update-date {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .terms-and-conditions__intro {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: justify;
  }
  
  /* Section Titles */
  .terms-and-conditions__section-title {
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 10px;
    text-align: center;
  }
  
  /* Paragraphs */
  .terms-and-conditions__paragraph {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: justify;
  }
  
  /* List Styling */
  .terms-and-conditions__list {
    margin-left: 20px;
    margin-bottom: 15px;
  }
  
  .terms-and-conditions__list-item {
    font-size: 14px;
    margin-bottom: 8px;
    text-align: justify;
  }