/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #0b2545; /* Dark blue background */
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 120px; /* Adjust logo size */
    margin-right: 10px;
  }
  
  .help-center {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
  }
  
  /* 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 {
    text-align: center;
    padding: 40px;
    background-color: #0b2545; /* Same dark blue background */
  }
  
  .search-container h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Search Bar Styling */
  .search-bar {
    display: flex;
    justify-content: center;
  }
  
  .search-bar input {
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: #3a4a59;
    color: #fff;
  }
  
  .search-bar button {
    background-color: transparent;
    border: none;
    margin-left: -40px;
    color: #fff;
    cursor: pointer;
  }
  
  .search-bar button i {
    font-size: 16px;
  }

  

  /* Error Message Section */
.error-message {
    text-align: center;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  .error-message p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .error-message a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .error-message a:hover {
    text-decoration: underline;
  }

  

  /* Footer Styling */
footer {
    background-color: #2c3e50; /* Dark background */
    padding: 40px 0;
    text-align: center;
    
  }
  
  .footer-container img {
    width: 150px; /* Adjust the size based on your logo */
  }
  
  footer img {
    display: inline-block;
  }
  