body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.header {
  background-color: #006d77;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  height: 80px;
  justify-content: space-between;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  height: 240px;
  width: auto;
  margin-left: 20px;
}

.nav {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
}

.section-title {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: 2rem;
}

.about-us {
  padding: 20px;
  background-color: #fff;
}

.about-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: none;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}

.about-image {
  flex: 1;
  height: 500px;
  max-width: 1500px;
  object-fit: cover;
  min-height: 200px;
  border-radius: 0px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Footer */
.footer {
  background-color: #12636b;
  padding: 30px 0;
  color: white;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.3);
  font-size: 16px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer h2 {
  text-align: center;
  margin-bottom: 20px;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: left;
  padding: 0 20px;
  margin-bottom: 30px;
}

.footer-columns div {
  margin: 10px;
  flex: 1 1 200px;
}

.footer-columns h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-columns a {
  display: block;
  margin: 6px 0;
  font-size: 14px;
  color: #e0f7fa;
  text-decoration: none;
}

.footer-columns a:hover {
  text-decoration: underline;
}

/* posisi sosial media  */
  .socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }

  .socials a {
    color: #ffffff;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .socials a:hover {
    color: #007bff;
  }


/* Legal Links */
.legal {
  font-size: 13px;
  color: #e0f7fa;
  text-align: left;
}

.legal a {
  color: #e0f7fa;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 100%;
    height: auto;
  }

  .info-boxes {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .career, .contact {
    width: 100%;
    min-height: auto;
  }
}

/* Judul Section Tentang Kami */
.section-title {
  font-size: 2rem;
}

.career-contact-section {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.career-section,
.contact-section {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.career-section .section-title,
.contact-section .section-title {
  margin-top: 0;
  margin-bottom: 20px;
  color: #ffffff;
}

.career-box,
.contact-box {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 0px;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  color: #000;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.career-box p,
.contact-box p {
  margin: 10px 0;
  font-size: 1.1rem;
}

.contact-box .fas {
  margin-right: 10px;
  color: #006d77;
}
