* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 15px 50px;
}
.logo a{
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li{
    margin-right: 15px;
}
.nav-links li:last-child{
    margin-right: 0px;
}
.nav-links li a{
    color: #fff;
    font-size: 19px;
    text-decoration: none;
    font-weight: bold;
    padding: 0px 5px;
    transition: 0.3s ease;
}
.nav-links li a:hover{
    color: #ffc107;
}
.nav-links li .active{
    color: #ffc107;
}
.moble-menu {
    display: none;
    cursor: pointer;
}
.moble-menu span{
    display: flex;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
}
.order-button {
    padding: 10px 20px;
    background-color: #ffc107;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s ease;
}
.order-button:hover {
    background-color: #d51341;
}
.class-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 50px;
}
.containerbox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
    padding: 20px;
  }
  
  .job-title {
    text-align: center;
    margin-bottom: 20px;
  }
  
  h1,
  h2 {
    margin: 0;
    padding: 0;
  }
  
  h1 {
    font-size: 2em;
  }
  
  h2 {
    font-size: 1.5em;
    color: #333;
  }
  
  .job-description {
    margin-bottom: 20px;
  }
  
  p {
    line-height: 1.5;
  }
  
  h3 {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  li {
    margin-bottom: 5px;
  }
  
  .contact-info {
    text-align: center;
  }
  .card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1.5px;
  border-radius: 4px;
  }
  
@media screen and (max-width:768px){
    .navbar{
        padding: 15px 30px;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: #444;
        padding:20px 25px ;
        margin-top: 8px;
    }
    .nav-links li{
        padding: 15px 0px;
    }
    .moble-menu {
        display: block;
    }
    .nav-active {
        display: block;
    }
    .containerbox {
        width: 90%;
    }
}