body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  header {
    color: #fff;
    /*padding: 1em 0;*/
    text-align: center;
    background: #EF891D;
    /* background-image: url("/assets/img/foonn.jpg"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 15px;
    font-weight: bold;
  }
  
  nav a {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
  }
  
  nav a:hover {
    background-color: #ddd;
    color: black;
  }
  
  .container {
    flex: 1 1 auto;
    min-height: 100%;
    background: #333333;
    border-radius: 39px;
  }
  
  .blog-post { 
    margin-bottom: 2em;
    /* padding: 1em; */
    border-radius: 8px;
    flex: 1 1 auto;
    min-height: 100%;
    width: 100%;
    max-width: 890px;
    margin: auto;
    /* padding: 0 10px; */
  }
  
  .blog-post h2, .blog-post h1, 
  .blog-post h3, .blog-post ul,
  .blog-post ol,
  .menu__title {
    color: #ffffff;
  }
  .main__title, .menu__title {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
  }
  
  .blog-post p {
    color: #ffffff;
    line-height: 1.5;
  }
  
  footer {
    text-align: center;
    padding: 1em 0;
    background: #000000;
    color: white;
  }
  
  .brand-table-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .brand-table {
    border-collapse: separate; 
    border-spacing: 0 15px;
    color: #fff;
    width: 60%;
    margin-bottom: 20px;
  }
  
  .brand-table td {
    /* border: 3px solid #ddd; */
    padding: 3px;
    text-align: center;
    background: #212121;
   
  }
  .brand-table td:first-child {
    border-radius: 17px 0 0 17px;
  }
  .brand-table td:last-child {
    border-radius: 0 17px 17px 0;
  }

  .brand-table th {
    background: #333333;  
    padding: 10px 0;  
   
  }
  .brand-table th:first-child {
    border-radius: 8px 0 0 8px;
  }
  .brand-table th:last-child{
    border-radius: 0 8px 8px 0;
  }

  
  .brand-logo {
    max-width: 100px; 
  }
  
  .brand-info {
    text-align: center;
  }
  
  .brand-button {
    background-color:#F68924;
    color: white;
    font-weight: bolder;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  .brand-button:hover {
    background-color: #f00;
  }
  .brand-button1 {
    background-color: #8EE32C;
    color: rgb(0, 0, 0);
    font-weight: bolder;
    padding: 8px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin: 2px;
  }
  @media (max-width: 768px) {
    .brand-table {
      width: 90%;
    }
    .blog-post {
      width: 90%;
    }
    
  }
  img {
    max-width: 100%;
  }

  .table table{
    width: 100%;
    border-collapse:collapse;
    border-spacing:0
    }
    .table table, .table table td,.table table th{
    border: 1px solid #595959;
    }
    .table table td, .table table th{
    padding: 3px;
    width: 30px;
    height: 25px;
    }
  
    .anchor__menu a {
      text-decoration: none;
      color: inherit;
    }
    .anchor__menu a:hover {
      color: #F68924;
    }
    .anchor__menu li {
      margin-bottom: 10px;
    }
    .img-cov {
      width: 200px;
      height: 200px;
    }
    .img-cov img {
      width: 100%;
      height: 100%;
      border-radius: 25px;
    }
    @media screen and (max-width:768px) {
      .img-cov {
        float: none !important;
        margin: 20px auto !important;
      }
    }