body {
    background-color: #ffffff; /* Dark background */
  }
  
  .header-section {
    padding: 20px;
    background-color: #0f1e36; /* Dark background matching the screenshot */
    text-align: center;
    position: relative;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
  }
  
  .logo h1 {
    font-size: 24px;
    color: #fff;
    font-family: Arial, sans-serif;
    font-weight: bold;
  }
  
  .logo h1 span {
    font-weight: normal;
    font-size: 16px;
    margin-left: 10px;
  }
  
  .header-nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-size: 14px;
  }
  
  .header-nav a:hover {
    text-decoration: underline;
  }
  
  .search-bar-container {
    margin-top: 30px;
    position: relative;
    display: inline-block;
  }
  
  .search-bar {
    width: 500px;
    padding: 15px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    background-color: #2c3e50;
    color: #fff;
  }
  
  .search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 20px;
  }

  





  .content-section {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  
  .breadcrumbs {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
  }
  
  .breadcrumbs a {
    color: #6c757d;
    text-decoration: none;
  }
  
  .breadcrumbs a:hover {
    text-decoration: underline;
  }
  
  h1 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  
  .updated-info {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .content {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
  }
  
  .content a {
    color: #5a67d8;
    text-decoration: none;
  }
  
  .content a:hover {
    text-decoration: underline;
  }
  
  .helpful-links {
    margin-top: 20px;
  }
  
  .helpful-links li {
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  .helpful-links a {
    color: #5a67d8;
    text-decoration: none;
  }
  
  .helpful-links a:hover {
    text-decoration: underline;
  }
  


  .related-articles-section {
    font-family: Arial, sans-serif;
    margin: 20px 0;
    text-align: center;
  }
  
  .related-articles-section h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .article-list {
    display: inline-block;
    text-align: left;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background-color: #f9f9f9;
  }
  
  .article-list a {
    display: block;
    font-size: 18px;
    color: #333;
    padding: 10px 0;
    text-decoration: none;
    border-bottom: 1px solid #eee;
  }
  
  .article-list a:last-child {
    border-bottom: none;
  }
  
  .article-list a:hover {
    color: #5a67d8; /* Light blue hover */
  }
  
  .article-list span {
    float: right;
    color: #5a67d8;
  }
  
  .feedback-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
  }
  
  .feedback-section p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .feedback-section .emojis {
    font-size: 30px;
  }
  
  .feedback-section .emojis span {
    margin: 0 15px;
    cursor: pointer;
  }

  
  .footer-section {
    background-color: #3a3f47; /* Dark background */
    padding: 20px 0;
    text-align: center;
  }
  
  .footer-logo h1 {
    font-size: 24px;
    color: #f1f1f1; /* Light text color */
    font-weight: bold;
    font-family: Arial, sans-serif;
    display: inline-block;
  }
  
  .logo-icon {
    font-size: 20px;
    color: #f1f1f1; /* Matches text color */
    margin: 0 10px;
    vertical-align: middle;
  }
  