.job-location-section {
  padding: 50px 20px;
  background: #f5f9ff;
}

.job-location-container {
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border: 2px solid #d9e5f2;
  border-radius: 16px;
  padding: 25px 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

/* LEFT */
.location-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.location-icon {
  width: 75px;
  height: 75px;
  background: #18a9ff;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
}

.location-text span {
  color: #18a9ff;
  font-size: 16px;
  font-weight: 700;
}

.location-text h2 {
  font-size: 30px;
  color: #0a2d55;
  margin-top: 5px;
  font-weight: 800;
}

/* Divider */
.divider {
  width: 2px;
  height: 100px;
  background: #d9e5f2;
}

/* RIGHT */
.location-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.location-right img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.company-address h3 {
  color: #0a2d55;
  font-size: 24px;
  margin-bottom: 8px;
}

.company-address p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* TABLET */
@media (max-width: 900px) {
  .job-location-container {
    flex-direction: column;
    text-align: center;
  }

  .divider {
    width: 100%;
    height: 2px;
  }

  .location-left,
  .location-right {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .location-left,
  .location-right {
    flex-direction: column;
  }

  .location-text h2 {
    font-size: 22px;
  }

  .company-address h3 {
    font-size: 20px;
  }
}
