.header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-teal) 100%
  );
  color: white;
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
  animation: move 20s linear infinite;
}

@keyframes move {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 1.1rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.search-box {
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 3px solid var(--primary-color);
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 30px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: white;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

.stats {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--alert-color) 100%
  );
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-around;
  text-align: center;
}
.stat-item p {
  opacity: 0.9;
}
.accordion-item {
  margin: 15px 0;
  border: 2px solid var(--border) !important;
  border-radius: 15px !important;
  overflow: hidden;
  background: var(--primary-bg);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
   transform: translateY(-5px);
}
.accordion-header {
  margin: 0;
}
.accordion-header button {
  font-size: 1.2rem;
  background: var(--primary-bg);
}
.accordion-button:not(.collapsed) {
  background: #e3e6ea;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-body {
  background: var(--white);
  border-top: 1px solid #cacaca;
}

.example{
    padding: 10px;
    margin: 0;
}
.example_body{
    margin: 0;
}