* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f3f9ff;
}

/* MAIN SECTION */
.hiring-banner {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.banner-container {
  max-width: 1250px;
  width: 100%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

/* LEFT CONTENT */
.banner-content {
  flex: 1;
  padding: 60px;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.logo-box img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.logo-box h3 {
  font-size: 30px;
  color: #0d2c54;
  font-weight: 800;
}

.logo-box p {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
}

/* TITLE */
.banner-content h1 {
  font-size: 78px;
  line-height: 1.05;
  color: #082c54;
  font-weight: 900;
  margin-bottom: 25px;
}

.banner-content h1 span {
  color: #1ea7ff;
  display: block;
}

/* BUTTON */
.join-btn {
  display: inline-block;
  text-decoration: none;
  background: #082c54;
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  margin-bottom: 22px;
  transition: 0.3s ease;
}

.join-btn:hover {
  background: #1ea7ff;
  transform: translateY(-3px);
}

/* DESCRIPTION */
.description {
  font-size: 18px;
  color: #555;
  line-height: 1.7;
  max-width: 480px;
}

/* RIGHT IMAGE */
.banner-image {
  flex: 1;
  min-height: 650px;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TABLET */
@media (max-width: 992px) {
  .banner-container {
    flex-direction: column;
  }

  .banner-content {
    padding: 40px 30px;
    text-align: center;
  }

  .logo-box {
    justify-content: center;
  }

  .banner-content h1 {
    font-size: 60px;
  }

  .description {
    margin: auto;
  }

  .banner-image {
    width: 100%;
    min-height: 420px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .banner-content {
    padding: 30px 20px;
  }

  .logo-box {
    flex-direction: column;
    gap: 10px;
  }

  .logo-box h3 {
    font-size: 22px;
  }

  .banner-content h1 {
    font-size: 42px;
  }

  .join-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .description {
    font-size: 15px;
  }

  .banner-image {
    min-height: 280px;
  }
}
