header {
  background-color: black;
}

header .logo {
  color: white;
  padding-left: 6%;
  font-size: 2.5em !important;
}

.jobs-hero {
  width: 100%;
  min-height: 85vh;
  background-color: black;
  display: flex;
  flex-direction: row;
  color: white;
  align-items: flex-start;
  padding-top: 8vh;
}

.jobs-text-container,
.jobs-image-container {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: flex-start;
}

.jobs-text-container {
  display: flex;
}

.jobs-text-content {
  width: 80%;
  height: fit-content;
  margin-left: 15%;
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: flex-start;
}

.jobs-text-content h1 {
  font-family: "PPNikkei";
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.1;
  width: 70%;
}

.build-with-us-button-container {
  width: 31rem;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.build-with-us-button {
  width: fit-content;
  font-family: "DM Sans";
  padding: 0.8rem 2.5rem;
  border-radius: 100rem;
  font-size: 1.125rem;
  background-color: #1a3d88;
  color: white;
  transition: all 0.3s ease;
}

.build-with-us-button:hover {
  cursor: pointer;
  background-color: rgb(26, 61, 136, 0.8);
}

.paragraphs-container {
  display: flex;
  flex-direction: column;
  gap: 35px;
  text-align: left;
}

.paragraphs-container p {
  font-family: "DM Sans";
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.3;
  max-width: 31rem;
}

.image-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-container img {
  width: 75%;
  height: 60%;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
}

.culture-section {
  background-color: #000;
  color: white;
  padding: 120px 5% 120px 7.5%;
}

.culture-container h2,
.jobs-container h2 {
  font-family: "NNPivot";
  font-size: 3rem;
  font-weight: 500;
  color: white;
  text-align: left;
  margin-bottom: 4rem;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 15rem;
}

.culture-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.culture-item h3 {
  font-family: "DM Sans";
  font-size: 1.25rem;
  font-weight: 600;
  color: #343dea;
  margin: 0;
  line-height: 1.3;
}

.culture-item p {
  font-family: "DM Sans";
  font-size: 1rem;
  font-weight: 300;
  color: white;
  line-height: 1.5;
  margin: 0;
  max-width: 40rem;
}

@media (max-width: 768px) {
  .culture-section {
    padding: 120px 5% 80px 5%;
  }

  .culture-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .culture-item h3 {
    font-size: 1.125rem;
  }

  .culture-item p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .culture-section {
    padding: 120px 5% 70px 5%;
  }

  .culture-container h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .culture-grid {
    gap: 2rem;
  }

  .culture-item h3 {
    font-size: 1rem;
  }

  .culture-item p {
    font-size: 0.9rem;
  }
}

.jobs-section {
  padding: 120px 10% 120px 10%;
  background: black;
}

.jobs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.jobs-container h2 {
  text-align: center;
}

.jobs-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-items: center;
  align-items: center;
}

.job-card {
  background: black;
  border: 1px solid #fff3;
  border-radius: 12px;
  padding: 2rem;
  width: 100%;
  max-width: 60%;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.job-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.job-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-title {
  font-family: "DM Sans";
  font-size: 1.5rem;
  font-weight: 600;
  color: #343dea;
  margin: 0;
  line-height: 1.3;
}

.job-description {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.job-description p {
  font-family: "DM Sans";
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.3;
  color: white;
}

.job-location {
  margin-top: 0.5rem;
}

.location-tag {
  color: white;
  border-radius: 16px;
  font-size: 0.8rem;
  font-weight: 400;
  display: inline-block;
}

.go-back {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 20px;
}

.go-back:hover {
  cursor: pointer;
  color: white;
  transition: all 0.2s ease;
}

.inverted-arrow {
  transform: rotate(180deg);
}

@media (max-width: 1024px) and (min-width: 769px) {
  .jobs-text-content {
    width: 90%;
    margin-left: 10%;
  }

  .jobs-text-content h1 {
    font-size: 3rem;
    width: 80%;
  }

  .paragraphs-container p {
    font-size: 1rem;
    max-width: 28rem;
  }

  .image-container img {
    width: 80%;
    height: 55%;
  }

  .culture-section {
    padding: 120px 5% 120px 5%;
  }
}

@media (max-width: 768px) {
  .jobs-hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding: 20px 5% 40px 5%;
    align-items: center;
  }

  .jobs-text-container,
  .jobs-image-container {
    width: 100%;
    height: auto;
  }

  .jobs-text-content {
    width: 100%;
    margin-left: 0;
    padding-top: 40px;
    gap: 25px;
    text-align: center;
  }

  .jobs-text-content h1 {
    font-size: 2.8rem;
    width: 100%;
    text-align: center;
  }

  .paragraphs-container {
    gap: 25px;
    text-align: center;
  }

  .paragraphs-container p {
    font-size: 1rem;
    max-width: 100%;
    text-align: center;
  }

  .build-with-us-button-container {
    justify-content: center;
    margin-top: 10px;
  }

  .image-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-container img {
    width: 90%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
  }

  .jobs-section {
    padding: 120px 5% 100px 5%;
  }

  .jobs-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .job-card {
    max-width: 100%;
    padding: 1.5rem;
  }

  .location-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .jobs-hero {
    padding: 15px 4% 30px 4%;
    min-height: auto;
  }

  .jobs-text-content {
    padding-top: 30px;
    gap: 20px;
  }

  .jobs-text-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .paragraphs-container {
    gap: 20px;
  }

  .paragraphs-container p {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .build-with-us-button {
    padding: 0.7rem 2rem;
    font-size: 1rem;
  }

  .image-container {
    margin-top: 30px;
  }

  .image-container img {
    width: 95%;
    height: 250px;
    border-radius: 15px;
  }

  .jobs-container h2 {
    font-size: 2rem;
  }

  .job-card {
    padding: 1.25rem;
  }

  .job-title {
    font-size: 1.3rem;
  }

  .skill-tag {
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
  }

  .location-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.4rem;
  }
}
