* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: Arial, sans-serif;
    }
    body {
      background-color: #f5f5f5;
      color: #333;
      line-height: 1.6;
    }
    .content {
      padding: 20px;
      text-align: center;
      background-color: #fff;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .content b {
      font-size: 24px;
      color: #2c3e50;
    }
    #companies_container {
      display: flex;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      gap: 20px;
    }
    #cont_left {
      width: 300px;
    }
    #left_box_cont {
      background-color: #fff;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    #left_box_cont span {
      font-weight: bold;
      display: block;
      margin: 15px 0 5px;
      color: #2c3e50;
    }
    .fil_inp {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 4px;
      margin-bottom: 5px;
    }
    .optionlist {
      list-style: none;
      margin-top: 10px;
    }
    .optionlist li {
      padding: 8px 0;
      border-bottom: 1px solid #eee;
      display: flex;
      align-items: center;
    }
    .optionlist input[type="checkbox"] {
      margin-right: 10px;
    }
    .optionlist span {
      margin-left: auto;
      color: #7f8c8d;
    }
    #cont_right {
      flex: 1;
    }
    #cont_right h3 {
      color: #2c3e50;
      margin-bottom: 10px;
    }
    .showreslt {
      color: #7f8c8d;
      margin-bottom: 20px;
    }
    .box_container_main {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 20px;
    }
    .box_cont {
      background-color: #fff;
      padding: 20px;
      border-radius: 5px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .box_cont:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .box_cont img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 15px;
      border: 2px solid #f1f1f1;
    }
    .head_box_count {
      color: #2c3e50;
      margin-bottom: 5px;
    }
    .category_box {
      color: #7f8c8d;
      font-size: 14px;
      margin-bottom: 10px;
    }
    .location_box {
      color: #7f8c8d;
      margin-bottom: 10px;
    }
    .location_box i {
      margin-right: 5px;
      color: #e74c3c;
    }
    .openings {
      display: inline-block;
      background-color: #f9f9f9;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 14px;
      color: #2c3e50;
    }
    .openings i {
      margin-right: 5px;
      color: #3498db;
    }
    @media (max-width: 992px) {
      #companies_container {
        flex-direction: column;
      }
      #cont_left {
        width: 100%;
        margin-bottom: 20px;
      }
    }
    @media (max-width: 768px) {
      .content b {
        font-size: 20px;
      }
      .box_container_main {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      }
    }
    @media (max-width: 576px) {
      .box_container_main {
        grid-template-columns: 1fr;
      }
      .box_cont {
        text-align: center;
      }
    }