*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family:'Inter',sans-serif;
}
.header {
display: flex;
justify-content:space-between;
align-items: center;
padding: 15px 20px;
}
.logo{
height:50px;
}
.hamburger{
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
gap:4px;
width:35px;
height:30px;
cursor:pointer;
border:2px solid #1f3493;
border-radius:5px;
padding:4px;
transition:all 0.3s ease;
    }
.hamburger div {
width: 22px;
height: 3px;
background-color: #1f3493;
border-radius: 3px;
transition: all 0.3s ease;
}
.hamburger.open div:nth-child(1){
transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open div:nth-child(2) {
opacity: 0;
}
.hamburger.open div:nth-child(3) {
transform: rotate(-45deg) translate(5px, -5px);
}
.navbar{
display:flex;
align-items:center;
gap:20px;
}
.navbarmenu {
background-color: #dcdcdc;
padding: 8px 20px;
border-radius: 20px;
display: flex;
gap: 20px;
}
.navbarmenu a {
text-decoration:none;
color:#003366;
font-weight:500;
}
.user-icon {
font-size: 30px;
color: #1f3493;
cursor: pointer;
    }


.main {
background-image: url('image/jobsearch1.png');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
min-height: 110vh;
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
padding: 20px;
}

.main h1 {
color: #1f3493;
font-size: 2.8rem;
margin-bottom:130px;
}

h2 {
font-weight: bold;
font-size:32px;
color: #1f3493;
margin-bottom:100px;
}

.box {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 100px;
margin-bottom:100px;
flex-wrap: nowrap;
}

.category {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}

.category img {
width: 175px;
height: 160px;
object-fit: cover;
}

.category button {
display: flex;
justify-content: center;
align-items: center;
min-width: 140px;
background-color: #ccc;
font-weight: bold;
border: none;
margin-top:10px;
padding:10px;
cursor: pointer;
}

.category button a {
text-decoration: none;
color: #1f3493;
}	
	
	
	
footer {
      text-align: center;
      font-size: 13px;
      padding: 20px;
      color: #001f3f;
      
    }

    footer a {
      color: #003366;
      margin: 0 10px;
      text-decoration: none;
      font-weight: bold;
    }

@media (max-width: 768px) {
  .hamburger {
display: flex;
}
.navbarmenu {
display:none;
flex-direction: column;
position: absolute;
top: 70px;
left: 0;
width: 100%;
padding: 10px 0;
background-color: #f5f5f5;
z-index: 10;
}
.navbarmenu.active {
display: flex;
}
.main h1 {
font-size: 1.8rem;
margin-bottom: 80px;
}
.main {
min-height: auto;
padding: 40px 20px;
}
.box {
flex-direction: column;
align-items: center;
gap: 40px;
margin-top: 30px;
}
.category img {
width: 150px;
height: auto;
}
.category button {
width: 100px;
font-size: 14px;
padding: 8px 16px;
}