body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  color: #ffffff;
  transition: background-color 0.5s ease-in-out;
}

.container {
  display: flex;
  width: 100%;
}

.base_container .container {
  margin-top: 96px;
}

.sidebar {
  width: 25%;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  padding: 20px;
  border-right: 2px solid rgba(133, 133, 255, 0.3);
}

.sidebar ul {
  list-style-type: none;
  padding: 0;
}

.sidebar ul li {
  padding: 12px 15px;
  margin: 8px 0;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  font-weight: 500;
}

.sidebar ul li:hover {
  background: linear-gradient(135deg, #66ccff, #8585ff);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(133, 133, 255, 0.3);
}

.sidebar ul li.active {
  background: linear-gradient(135deg, #8585ff, #66ccff);
  box-shadow: 0 4px 15px rgba(133, 133, 255, 0.3);
}

.content {
  width: 75%;
  padding: 20px;
  background-color: #121212;
}

/* Content sections */
.job-content,
.testimonials-section,
.faq-section {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.job-content.active,
.testimonials-section.active,
.faq-section.active {
  display: block;
}

.job-content.fade-in,
.testimonials-section.fade-in,
.faq-section.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Dark themed content sections */
.job-content.active,
.testimonials-section.active,
.faq-section.active {
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(133, 133, 255, 0.2);
}

.section-title {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
  padding: 30px;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 15px;
  margin-top: 20px;
  border: 1px solid rgba(133, 133, 255, 0.2);
}

.testimonial {
  text-align: center;
  margin: 20px;
  font-style: italic;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 20px;
  background-color: rgba(133, 133, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.testimonial:hover {
  background-color: rgba(133, 133, 255, 0.2);
  transform: translateY(-2px);
}

.testimonial span {
  display: block;
  font-weight: bold;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 10px;
}

/* FAQ Section */
.faq-section {
  margin-top: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #1f1f1f 0%, #2a2a2a 100%);
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(133, 133, 255, 0.2);
}

.faq-section h3 {
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

.faq-item {
  margin-bottom: 20px;
  background-color: rgba(133, 133, 255, 0.1);
  border-radius: 10px;
  padding: 15px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: rgba(133, 133, 255, 0.2);
}

.faq-item h4 {
  cursor: pointer;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  font-weight: 600;
  transition: all 0.3s ease;
}

.faq-item h4:hover {
  background: linear-gradient(135deg, #66ccff, #8585ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item p {
  display: none;
  margin: 15px 0 0;
  background: linear-gradient(135deg, #8585ff, #66ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item p.show {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 500px;
    opacity: 1;
  }
}

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

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid rgba(133, 133, 255, 0.3);
  }

  .content {
    width: 100%;
  }
}
