* , body{
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;


}
/* Top bar styling */
.top-bar {
    background-color: #222;
    color: white;
    padding: 5px 20px;
    text-align: center;
    font-size: 14px;
  }
  .top-bar a{
    text-decoration:none;
  }
  
  .top-bar .contact-info {
    display: inline-block;
  }
  
  .top-bar .contact-info span {
    margin-left: 20px;
  }
  /* General header styling */
header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    background-color: white;
    color: black;
  }
  
  header .logo {
    display: flex;
    align-items: center;
  }
  
  header .logo img {
    height: 50px;
    margin-right: 10px;
  }
  
  header nav {
    display: flex;
    align-items: center;
  }
  
  header nav a {
    text-decoration:none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    margin: 0 5px;
    transition: background-color 0.3s;
  }
  .contact p.phone {
    font-weight: bold;
    font-size: 16px;
  }
  header nav a:hover {
    background-color: #555;
    border-radius: 5px;
  }
  /* Active link styling */
header nav a.active {
    color: rgb(235, 62, 19);
    
    border-radius: 5px;
  }
  
  /* Dropdown styling */
  .dropdown {
    position: relative;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    top: 150%;
    left: 0;
    background-color: #555;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    display: block;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .dropdown-content a:hover {
    background-color: #777;
  }
  
  /* Show the dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  