body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f5f5f5;
}

header {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  max-width: 150px;
  height: auto;
}

.job-button {
  display: inline-block;
  background-color: rgb(0, 128, 128);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
}

.job-button:hover {
  background-color: rgb(4, 128, 128);
  transform: translateY(-2px);
}

h1 {
  color: #2c3e50;
  text-align: center;
  margin: 20px 0 0;
  width: 100%;
}

h2 {
  color: #2c3e50;
  border-bottom: 2px solid rgb(0, 128, 128);
  padding-bottom: 10px;
  margin-top: 40px;
}

.section {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

ul {
  padding-left: 20px;
}

.job-listings {
  list-style-type: none;
  padding: 0;
}

.job-listings li {
  margin-bottom: 10px;
}

.job-listings a {
  display: block;
  padding: 15px;
  background-color: #f8f9fa;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.job-listings a:hover {
  background-color: #e9ecef;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.list-circle li {
  list-style-type: circle;
}

.job-listings li.job-category ul {
  padding-left: 0;
}

.job-listings li.job-category ul li {
  list-style-type: none;
}



@media screen and (max-width: 600px) {
  body {
    padding: 10px;
  }

  header {
    padding: 15px;
  }

  .header-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .logo {
    max-width: 120px;
  }

  .job-button {
    width: 100%;
    max-width: 200px;
  }

  h1 {
    font-size: 24px;
    margin-top: 15px;
  }

  h2 {
    font-size: 20px;
  }

  .section {
    padding: 15px;
  }

  .job-listings a {
    padding: 12px;
  }
}
