/* Header Container */
.help-center-header {
    background-color: #0b2545; /* Dark blue background */
    padding: 20px 0;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 120px; /* Adjust logo size */
    margin-right: 10px;
  }
  
  .help-center-text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
  }
  
  /* Navigation Links */
  .nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  .dropdown-arrow {
    font-size: 12px;
  }
  
  /* Search Container */
  .search-container {
    padding: 40px 20px;
    background-color: #0b2545; /* Same dark blue background */
    text-align: center;
  }
  
  .search-bar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #3a4a59;
    border-radius: 10px;
    width: 60%;
  }
  
  .search-bar input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 10px 0 0 10px;
    background-color: #3a4a59;
    color: #fff;
    font-size: 16px;
  }
  
  .search-bar button {
    background-color: transparent;
    border: none;
    color: #fff;
    padding: 0 15px;
    cursor: pointer;
  }
  
  .search-bar button i {
    font-size: 16px;
  }

  


  /* Breadcrumb Styling */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .breadcrumb a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  
  .breadcrumb span {
    color: #555;
  }
  
  /* Content Layout */
  .content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .main-content {
    width: 70%;
  }
  
  .sidebar {
    width: 20%;
    padding-left: 20px;
    border-left: 1px solid #e0e0e0;
  }
  
  .sidebar p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
  }

  

  body {
    font-family: Arial, sans-serif;
  }
  
  .related-articles {
    margin: 20px 0;
  }
  
  .related-articles h2 {
    font-size: 1.2rem;
    color: #333;
  }
  
  .related-articles ul {
    list-style-type: none;
    padding: 0;
  }
  
  .related-articles li {
    margin: 10px 0;
  }
  
  .related-articles li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
  }
  
  .related-articles li a:hover {
    text-decoration: underline;
  }
  
  .feedback {
    margin: 30px 0;
    text-align: center;
  }
  
  .feedback p {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .emojis {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .emoji {
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .emoji:hover {
    transform: scale(1.2);
  }

  



  body {
    margin: 0;
    font-family: Arial, sans-serif;
  }
  
  .header {
    background-color: #3A4048; /* Dark background similar to the image */
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .logo img {
    height: 50px; /* Adjust logo size as needed */
  }
  