    :root {
      --primary-color: #01406B;
      --accent-color: #01406B;
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --bg-light: #f8fafc;
      --border-color: #e5e7eb;
    }


.breadcrumb-section {
  position: relative;
  padding: 80px 0;
  height: 350px;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* black overlay with 60% opacity */
  z-index: -1;
}

    .breadcrumb-content {
      position: relative;
      z-index: 1;
      top:37px;
    }

    .breadcrumb-content h1 {
      font-size: 2.2rem;
              color: #ffffff;
      font-weight: 600;
    }

    .breadcrumb-content .breadcrumb {
      background: none;
      padding: 0;
      margin: 0;
    }

    .breadcrumb a {
         color: #ffffff;
      text-decoration: underline;
    }

    .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
       color: #ffffff;
    }

    .sidebar {
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      margin-bottom: 20px;
    }

    .sidebar-header {
      background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
      color: white;
      padding: 20px;
      font-weight: 600;
      font-size: 1.1rem;
    }

    .sidebar-menu {
      padding: 0;
    }

    .sidebar-menu a {
      display: block;
      padding: 15px 20px;
      color: var(--text-dark);
      text-decoration: none;
      border-bottom: 1px solid var(--border-color);
      transition: all 0.3s ease;
      position: relative;
    }

    .sidebar-menu a:hover,
    .sidebar-menu a.active {
      background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent);
      color: var(--accent-color);
      transform: translateX(5px);
    }

    .sidebar-menu a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      width: 3px;
      background: var(--accent-color);
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }

    .sidebar-menu a:hover::before,
    .sidebar-menu a.active::before {
      transform: scaleY(1);
    }

    .sidebar-menu a i {
      margin-right: 10px;
      width: 16px;
      text-align: center;
    }

    .sidebar-menu a:last-child {
      border-bottom: none;
    }

    .info-card {
      background: white;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }

    .info-card h5 {
      color: var(--primary-color);
      font-weight: 600;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .working-hours p {
      margin-bottom: 8px;
      color: var(--text-light);
      display: flex;
      justify-content: space-between;
    }

    .working-hours strong {
      color: var(--text-dark);
    }

    .main-content {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .main-content h3 {
      color: var(--primary-color);
      font-weight: 600;
      margin: 25px 0 15px 0;
      position: relative;
      padding-bottom: 10px;
    }

    .main-content h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
      border-radius: 2px;
    }

    .feature-list {
      list-style: none;
      padding: 0;
    }

    .feature-list li {
      padding: 10px 0;
      position: relative;
      padding-left: 25px;
      color: var(--text-dark);
    }

    .feature-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #10b981;
      font-weight: bold;
      background: rgba(16, 185, 129, 0.1);
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }

    .hero-image {
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
      margin-bottom: 25px;
    }

    .feature-image {
      border-radius: 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .query-placeholder {
      background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
      border-radius: 8px;
      padding: 40px 20px;
      text-align: center;
      color: var(--primary-color);
      font-weight: 500;
    }

    @media (max-width: 768px) {
      .container {
        padding: 20px 15px;
      }
      
      .main-content {
        padding: 20px;
        margin-top: 20px;
      }
      
      .sidebar {
        margin-bottom: 20px;
      }
    }