body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
}

.container {
  max-width: 700px;
  margin: 20px auto;
  border: 2px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #006bb6;
  color: white;
  padding: 20px;
  font-size: 36px;
  font-weight: bold;
  flex-wrap: wrap;
  text-align: center;
}

.title {
  flex: 1 1 auto;
}

.logo {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.hiring-bar {
  background-color: #e6e6e6;
  color: red;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding: 20px 10px;
}

.positions {
  background-color: #e6e6e6;
  color: red;
  font-size: 28px;
  text-align: center;
  padding: 25px 10px;
  font-weight: bold;
  line-height: 1.5;
}

.footer {
  background-color: #006bb6;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 18px;
}

.qualification-row {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}

.left-bold,
.right-bold {
  flex: 1;
  padding: 0 10px;
}

.phone,
.email {
  font-weight: bold;
  font-size: 20px;
  color: white;
  text-decoration: none;
}

.phone:hover,
.email:hover {
  text-decoration: underline;
}

.contact {
  line-height: 1.6;
}

/* Responsive layout */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    font-size: 20px;
  }

  .logo {
    margin-top: 10px;
    width: 60px;
    height: 60px;
  }

  .hiring-bar {
    font-size: 28px;
  }

  .positions {
    font-size: 24px;
  }

  .footer {
    font-size: 16px;
  }

  .qualification-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  .left-bold,
  .right-bold {
    padding: 0;
    font-size: 18px;
  }

  .phone,
  .email {
    font-size: 18px;
  }
}
