.breadcrumb {
  background: transparent;
  margin-bottom: 2rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #fff;
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Page Header */
.page-header {
  padding:  60px 0 80px;
  background: linear-gradient(135deg, #3c3d63 0%, #001629 100%);
}

.page-title {
  border-bottom: 1px solid var(--border-color);
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
  font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    color:#fff;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 30vh;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff20" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  opacity: 0.1;
}

/* Page Content */
.content-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
}

.content-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.content-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
}

.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.content-wrapper ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.content-wrapper ul li {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .page-header {
    padding: 40px 0;
  }

  .page-title {
    font-size: 2rem;
  }

  .content-wrapper {
    padding: 30px;
    margin-top: 30px;
  }

  .content-wrapper h2 {
    font-size: 1.75rem;
  }

  .content-wrapper h3 {
    font-size: 1.35rem;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 30px 0;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .content-wrapper {
    padding: 25px;
    margin-top: 30px;
  }

  .content-wrapper h2 {
    font-size: 1.5rem;
  }

  .content-wrapper h3 {
    font-size: 1.25rem;
  }

  .content-wrapper p,
  .content-wrapper ul li {
    font-size: 1rem;
  }
}
