
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: #333;
  line-height: 1.6;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  z-index: 1000;
  text-align: right;
}
.navbar a {
  margin-left: 15px;
  color: #A96C71;
  text-decoration: none;
  font-weight: 500;
}
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A96C71;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 80%;
}
.hero h1 {
  font-size: 48px;
  margin: 0;
}
.hero h2 {
  font-size: 36px;
  margin: 10px 0;
}
.hero .tagline {
  font-size: 18px;
  font-style: italic;
}
.section {
  padding: 60px 20px;
}
.section.light {
  background: #FDF6F0;
}
.section h2 {
  color: #A96C71;
  margin-top: 0;
}
.objectives-list {
  list-style: disc;
  padding-left: 20px;
}
.objectives-list li {
  margin-bottom: 8px;
}
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.category {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  border: 1px solid #D79FA3;
  border-radius: 8px;
  padding: 15px;
  min-width: 250px;
}
.modules {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.module {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  border: 1px solid #D79FA3;
  border-radius: 8px;
  padding: 15px;
  min-width: 250px;
}
.procedures {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.procedure {
  flex: 1 1 calc(50% - 20px);
  background: #fff;
  border: 1px solid #D79FA3;
  border-radius: 8px;
  padding: 15px;
  min-width: 250px;
}
.other-modules {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.other-block {
  flex: 1 1 calc(33% - 20px);
  background: #fff;
  border: 1px solid #D79FA3;
  border-radius: 8px;
  padding: 15px;
  min-width: 200px;
}
.career-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.step {
  flex: 1 1 calc(25% - 20px);
  background: #fff;
  border: 1px solid #D79FA3;
  border-radius: 8px;
  padding: 15px;
  min-width: 200px;
  text-align: center;
}
.career-caption {
  margin-top: 20px;
  font-style: italic;
  color: #555;
}
.contact-details p {
  margin: 4px 0;
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #D79FA3;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}
.btn:hover {
  background: #A96C71;
}
.footnotes {
  padding: 20px;
  font-size: 12px;
  color: #555;
  text-align: left;
}
.footnotes a {
  color: #A96C71;
  text-decoration: underline;
  margin-right: 8px;
}

/* Full text section styling */
.full-text {
  background: #FFFFFF;
  border: 1px solid #D79FA3;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  line-height: 1.6;
  color: #333;
}
.full-text h3 {
  color: #A96C71;
  margin-top: 20px;
  margin-bottom: 10px;
}
.full-text h4 {
  color: #A96C71;
  margin-top: 15px;
  margin-bottom: 5px;
}
.full-text ul,
.full-text ol {
  margin-left: 20px;
  padding-left: 10px;
}
.full-text li {
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .category, .module, .procedure, .other-block, .step {
    flex: 1 1 100%;
  }
}
