/* Recruitment Main Section */
#recruitment {
  background: #fff;
  padding: 50px 20px;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
}

#recruitment h1 {
  font-size: 2rem;
  color: #FF6F3C;
  margin-bottom: 20px;
}

#recruitment p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Positions Section */
#positions {
  background: #fff;
  padding: 40px 20px;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

#positions h2 {
  text-align: center;
  color: #FF6F3C;
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Accordion Styles */
.accordion {
  background-color: #FFE1D3;
  color: #333;
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  outline: none;
  transition: background-color 0.3s ease;
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.accordion:hover {
  background-color: #ffd3c0;
}

.panel {
  padding: 0 20px 15px 20px;
  background-color: #fafafa;
  display: none;
  overflow: hidden;
  border-radius: 0 0 5px 5px;
  border: 1px solid #f0f0f0;
  border-top: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.panel p {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Optional: Add transition for smooth open/close */
.panel.show {
  display: block;
}








#positions {
  background: #ffffff;
  padding: 40px 20px;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

#positions h2 {
  text-align: center;
  color: #FF6F3C;
  font-size: 2rem;
  margin-bottom: 30px;
}

.accordion {
  background-color: #fff;
  color: #333;
  cursor: pointer;
  padding: 15px 20px;
  width: 100%;
  text-align: left;
  font-size: 1.05rem;
  font-weight: bold;
  border: 1px solid #ddd;
  border-radius: 5px;
  outline: none;
  transition: background-color 0.2s ease;
  margin-bottom: 10px;
}

.accordion:hover {
  background-color: #f2f2f2;
}

.panel {
  display: none;
  padding: 0 20px 15px 20px;
  background-color: #fafafa;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  border-bottom: 1px solid #eee;
  border-radius: 0 0 5px 5px;
  margin-top: -10px;
  animation: fadeIn 0.3s ease-in-out;
}

.panel p {
  margin-top: 15px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Simple fade animation */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
