/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  .content{
    padding: 24px;
  }
  
  body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  h3{
    font-size: 18px;
    margin-bottom: 18px;
  }
  ul{
    margin-bottom: 20px;
    padding-left: 24px;
  }
  /* Header Styles */
  .header {
    display: flex;
  justify-content: center;
    align-items: center;
    background-color: #2f3e46;
    padding: 16px;
    height: 120px;
  }
  
  /* Desktop Logo */
  .logo-desktop {
    display: flex;
    justify-content: center;
    width: 106px;
    height: 56px;
  }
  p{
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 15px;
  }
  /* Mobile Responsive Styles */
  @media (max-width: 768px) {
    .header {
      justify-content: center;
      height: 96px;
    }
  
    .logo-mobile {
      display: block;
      margin: 16px;
    }
  }
  strong{
    font-size: 16px;
  }
  /* Other styles here */
  