.top-bar {
    background-color: #f7b132;
    color: #000000;
    padding: 10px 0;
  }
  
  .containertop {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .contact-info p {
    margin: 0;
  }
  
  .contact-info a {
    color: #000000;
    text-decoration: none;
  }
  
  .content {
    display: flex;
    margin: auto;
  }
  
  .rTable {
    width: 100%;
    text-align: center;
  }
  
  .rTable thead {
    background: #f8b133;
    font-weight: bold;
    color: #000;
  }
  
  .rTable tbody tr:nth-child(2n) {
    background: #f8b133;
  }
  
  .rTable th,
  .rTable td {
    padding: 7px 0;
  }
  
  /* Media Queries */
  
  @media only screen and (max-width: 768px) {
    .rTable thead th {
      display: none;
    }
  
    .rTable tbody td {
      display: flex;
      flex-direction: column;
      align-items: center; /* Center content vertically */
    }
  
    .rTable tbody td i {
      font-size: 18px; /* Adjust icon size for smaller screens */
    }
  }
  
  @media only screen and (min-width: 768px) and (max-width: 992px) {
    /* Styles for medium screens (optional) */
  }
  
  @media only screen and (min-width: 992px) {
    .rTable tbody tr td:nth-child(1) {
      width: 15%;
    }
  
    .rTable tbody tr td:nth-child(2) {
      width: 35%;
    }
  
    .rTable tbody tr td:nth-child(3) {
      width: 25%;
    }
  }

