.sidebar {
  width: 364px;
  min-width: 270px;
  font-family: Inter;
}
.categories-box {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.category-header {
  background-color: #E33F36;
  color: white;
  font-weight: bold;
  padding: 12px 16px;
}
.categories-box ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.categories-box ul li {
  border-top: 1px solid #E5E7EB;
margin:0;
}
.categories-box ul li a {
  display: block;
  padding: 15px;
  color: #2C64F7;
  text-decoration: none;
  background-color: #E6F0FF80;
font-size: 14px;
}
.categories-box ul li:nth-child(even) a {
    background-color: #ffffff;
}
.cta-box-small {
  background: linear-gradient(105.47deg, #0052CC 39.16%, #002966 155.6%);
  color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}
.cta-box-small h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: white !important;
}
.cta-box-small p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
}
.apply-btn {
  display: inline-block;
  padding: 10px 14px;
  background-color: #ff6600;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}
.apply-btn {
color: white !important;
}
.apply-btn:hover {
  background-color: #e15d05;
}

.breadcrumb {
  font-family: Inter;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #444;
width:100%;
margin-block: 30px;
}
.breadcrumb p {
margin:0;
}
.breadcrumb a {
  text-decoration: none;
  color: #0077cc;
  font-weight: 500;
  transition: color 0.2s ease;
}
.breadcrumb a:hover {
  color: #005fa3;
  text-decoration: underline;
}
.breadcrumb .separator {
  margin: 0 8px;
  color: #aaa;
  font-size: 16px;
}
.breadcrumb .current {
  font-weight: 500;
  color: #222;
}

@media screen and (max-width: 768px) {
  .sidebar {
    width: 100%;
  }
}