body {
  background-color: #fff8e1;
  font-family: 'Outfit', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-color: #ffcc00;
  padding: 1.5em 1em;
  text-align: center;
}

header h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #000;
}

nav {
  margin-top: 0.5em;
}

nav a {
  color: #d00000;
  text-decoration: none;
  margin: 0 1em;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

nav a:hover {
  text-decoration: underline;
  color: #a00000;
}

main {
  max-width: 900px;
  margin: 3em auto;
  padding: 0 1em;
}

.ladder-intro {
  text-align: center;
  margin-bottom: 3em;
}

.ladder-intro h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  color: #d00000;
  margin-bottom: 0.5em;
}

.ladder-intro p {
  font-size: 1.2rem;
  color: #333;
}

/* Section Styling */
.ladder-section {
  margin-bottom: 3em;
}

.ladder-section h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  color: #d00000;
  border-bottom: 3px solid #d00000;
  padding-bottom: 0.3em;
  margin-bottom: 1em;
}

/* Employee List and Cards */
.employee-list {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
}

.employee-card {
  display: flex;
  align-items: center;
  background-color: #ffe9b3;
  border-left: 6px solid #d00000;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.employee-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1em;
  border: 2px solid #d00000;
  background-color: #fff;
}

.employee-info h4 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: #000;
}

.employee-info p {
  margin: 0.3em 0 0 0;
  font-size: 1rem;
  color: #444;
  font-weight: 500;
}

/* Footer */
footer {
  background-color: #d00000;
  color: #fff8e1;
  text-align: center;
  padding: 1em;
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  margin-top: 4em;
}

/* Mobile-friendly */
@media (max-width: 600px) {
  .employee-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .employee-card img {
    margin-bottom: 0.8em;
    margin-right: 0;
  }
}
