body{
        font-family: 'Segoe UI', sans-serif;
}
    header{
    width: 100%;
    height: 85px;

    border-bottom: 0.5px #e8e8e8 solid;
    display: flex;
   justify-content: space-between;
   position: relative;
}
header #logo{
    max-width: 100%;
    height: auto;
    max-height: 55px;
    margin:15px 0px 5px 20px;
    float: left;
    position:absolute;
   
}
header nav{
    margin: 20px 10px 5px 20px;
    display: block;
    float: right;
}
header nav ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding-right: 10px;
    font-weight: 400;
}
header nav ul li{
   padding-left: 4px;
    padding-top: 8px;
   
}
header nav ul #liLogin{
  padding-top: 7px;
  padding-right: 4px;
  display: flex;
}
header nav ul #liLogin #login{
    
    height: 27px;

     
  text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

  
   
}
header nav ul #liLogin #login a{
    color:white;
}
header nav ul li a{
    color: black;
    text-decoration: none;
}
 header  #btnSearch{
      padding: 5px 13px 5px 13px;
      border-radius: 15px;
      border: 0.2px solid lightgray;
      background-color:rgb(253, 247, 236);
        
      box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.333);
      font-weight: 250;
      font-size: small;
      cursor: pointer;
      height: 30px;
      margin:17px 30px 0px 0px;
   
      
    }
.dropdown{
    display: none;
    float: right;
    margin: 10px 10px 5px 0px;
    position: relative;
    cursor: pointer;

}

@media (max-width: 768px) {

header{
  height: 75px;
}
 
 
    .dropdown{
        display: block;
        font-size: larger;
        margin: 13px 10px 5px 0px;
    }
    .fa-bars-staggered{
        font-size: larger;
        color: #00bf63;
        margin: 10px 5px 5px 0px;
    }
    header #logo {
        margin-top: 18px;
        max-height: 40px; /* Adjust max height for smaller screens */
    }
}

  .section-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
 color: #434343;
  }

  .issue-box {
    border-left: 6px solid #dc3545;
    background-color: #fff5f5;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
  }

  .issue-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: #c82333;
    margin-bottom: 1rem;
  }

  .issue-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: block;
    margin-bottom: 1rem;
  }

  .issue-desc {
    font-size: 1rem;
    color: #555;
  }

  .step-box {
    background-color: #f8f9fa;
    border: 1px solid #e2e2e2;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
  }

  .step-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #0d6efd;
    margin-bottom: 0.8rem;
  }

  .highlight {
    font-weight: bold;
    color: #4A90E2;
  }

  .note {
    font-style: italic;
    font-size: 0.95rem;
    color: #777;
  }  .alert {
      transition: all 0.4s ease-in-out;
    }