/* job-details.css */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7f9;
  color: #002366;
  margin: 0;
  padding: 0;
}

.top-bar {
  background: #002366;
  padding: 1rem 2rem;
  text-align: right;
}
.back-to-site {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.logo-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: #fff;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.logo-svg {
  width: 80px;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text .line1 {
  font-size: 1.8rem;
  font-weight: bold;
}
.logo-text .line2 {
  font-size: 1.4rem;
}
.logo-text .line3 {
  font-size: 1rem;
  color: #777;
}

.job-section {
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.job-block {
  margin-bottom: 3rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.job-block h2 {
  color: #002366;
  margin-bottom: 0.5rem;
}

.job-block p {
  margin-bottom: 1.5rem;
  color: #333;
  line-height: 1.7;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
form button {
  padding: 0.75rem;
  background: #ff5c00;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}
form button:hover {
  background: #e04a00;
}

@media (max-width: 768px) {
  .logo-wrap {
    flex-direction: column;
    text-align: center;
  }
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9fb;
  margin: 0;
}

.top-bar {
  background: #002366;
  padding: 1rem 2rem;
  text-align: right;
}
.back-to-site {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.logo-banner {
  padding: 2rem;
  background: #fff;
  display: flex;
  justify-content: center;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.logo-text .line1 { font-size: 1.5rem; font-weight: bold; }
.logo-text .line2 { font-size: 1.2rem; }
.logo-text .line3 { font-size: 0.9rem; color: #555; }

.job-split {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 2rem auto;
  padding: 1rem;
  flex-wrap: wrap;
}

.job-desc {
  flex: 1 1 60%;
}
.job-desc h1 {
  font-size: 2rem;
  color: #002366;
  margin-bottom: 0.5rem;
}
.job-meta {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}
.job-desc p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.job-apply {
  flex: 1 1 35%;
  background: #f3f3f3;
  padding: 2rem;
  border-radius: 6px;
}
.job-apply h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.job-apply form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.job-apply input, .job-apply textarea {
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.job-apply button {
  background: #ff5c00;
  color: white;
  padding: 0.8rem;
  font-weight: bold;
  border: none;
  border-radius: 4px;
}
.job-apply button:hover {
  background: #e04a00;
}
.disclaimer-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: #ffe5e5;
  color: #cc0000;
  font-weight: bold;
  padding: 1rem 2rem;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
  transform: translateY(100%);
}

.disclaimer-banner.slide-in {
  transform: translateY(0);
  opacity: 1;
  bottom: 0;
}

.disclaimer-banner.fade-out {
  opacity: 0;
  transform: translateY(100%);
}

.disclaimer-banner button {
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #cc0000;
  margin-left: 1rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .job-split {
    flex-direction: column;
  }
}
