body{
   /* overflow-x: hidden; */
}
.main-more-page {
  max-width: 1300px;
  margin: 0 auto;
}

.more-page-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  margin-top: 50px;
  margin-bottom: 150px;
}

.more-page-content {
  flex: 1 1 300px;
  z-index: 2;
  color: white;
}

.more-page-content h1 {
  margin-bottom: 20px;
}

.more-page-images {
  position: relative;
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.more-page-images .ellipse-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  z-index: 1;
}

.more-page-images .phone-left {
  position: absolute;
  left: -5%;
  top: -10%;
  width: 70%;
  height: auto;
  z-index: 2;
}

.more-page-images .phone-right {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 70%;
  height: auto;
  z-index: 3;
}

.download-section {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #372cff, #e83338);
  border-radius: 40px;
  padding: 10px 20px;
  max-width: 290px;
  color: white;
  cursor: pointer;
}

.job-openings-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 150px 0 50px 0;
}

.job-cards-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: space-between;
}

.job-card {
  background-color: transparent;
  border-radius: 40px;
  border: 1px solid #00d8ff;
  box-shadow: inset 0 0 0 #00d8ff, inset 0 0 42px rgba(0, 216, 255, 0.4);
  padding: 60px;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  color: white;
  max-width: 600px;
  line-height: 1.25;
  font-weight: 300;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.job-card-body {
  margin: 20px 0;
}

.job-card-footer button {
  border: 1px solid black;
  background-color: white;
  padding: 10px 30px;
  border-radius: 20px;
  cursor: pointer;
  color: black;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .more-page-container {
    text-align: center;
    gap: 3rem;
  }

  .job-openings-section {
    padding: 10px;
  }

  .more-page-content {
    padding: 10px;
  }

  .more-page-images {
    order: 1;
  }

  .more-page-images .ellipse-image {
    max-width: 400px;
  }

  .more-page-images .phone-left {
    left: 3%;
    top: -15%;
    width: 60%;
  }

  .more-page-images .phone-right {
    right: 3%;
    bottom: -15%;
    width: 60%;
  }

  .download-section {
    margin: 30px auto;
  }

  .job-cards-container {
    justify-content: center;
  }

  .job-card {
    flex: 1 1 80%;
  }
}

@media (max-width: 768px) {
  .more-page-images {
    min-height: 320px;
  }

  .more-page-container {
    flex-direction: column;
  }

  .more-page-images .ellipse-image {
    max-width: 400px;
  }

  .more-page-images .phone-left {
    left: -5%;
    top: -10%;
    width: 70%;
  }

  .more-page-images .phone-right {
    right: -5%;
    bottom: -10%;
    width: 70%;
  }

  .more-page-content h1 {
    font-size: 1.8rem;
  }

  .more-page-content p {
    font-size: 0.95rem;
  }

  .job-card {
    padding: 40px;
  }

  .job-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

@media (max-width: 425px) {
  .more-page-images {
    min-height: 280px;
     overflow: visible; 
  }

  .more-page-images .ellipse-image {
    max-width: 340px;
  }

  .more-page-images .phone-left,
  .more-page-images .phone-right {
    max-width: 250px;
  }

  .more-page-images .phone-left {
    left: -5%;
    top: -10%;
  }

  .more-page-images .phone-right {
    right: -4%;
    bottom: -10%;
  }

  .more-page-content h1 {
    font-size: 1.5rem;
  }

  .job-card {
    padding: 25px;
    font-size: 0.9rem;
  }

  .job-card-footer button {
    padding: 8px 20px;
  }
}

@media (max-width: 350px) {
  .more-page-images {
    min-height: 250px;
  }

  .more-page-images .ellipse-image {
    max-width: 300px;
  }

  .more-page-images .phone-left,
  .more-page-images .phone-right {
    max-width: 200px;
  }

  .more-page-images .phone-left {
    left: -5%;
    top: 5%;
  }

  .more-page-images .phone-right {
    right: -1%;
    bottom: 5%;
  }

  .more-page-content h1 {
    font-size: 1.3rem;
  }

  .more-page-content p {
    font-size: 0.85rem;
  }

  .job-card {
    padding: 20px;
  }
}
