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;
  }
  
  .video-container {
    margin-top: 20px;
    text-align: center;
  }
  
  .video-container iframe {
    border-radius: 8px;
  }

  


  .feedback-section {
    font-family: Arial, sans-serif;
    margin-top: 20px;
    text-align: center;
  }
  
  .feedback-section p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
  }
  
  .feedback-container {
    padding: 20px;
    background-color: #f4f4f4;
    border-radius: 10px;
    display: inline-block;
  }
  
  .feedback-container p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .emojis {
    font-size: 30px;
  }
  
  .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-family: Arial, sans-serif;
    font-weight: bold;
    display: inline-block;
  }
  
  .footer-logo h1:before {
    content: "• ";
    font-size: 20px;
    color: #f1f1f1; /* Dot color same as text */
  }
  
  .footer-logo h1:after {
    content: " •";
    font-size: 20px;
    color: #f1f1f1;
  }
  