/* styles.css */

.logo-title {
    display: flex; /* Aligns items horizontally */
    align-items: center; /* Vertically centers items */
}

.logo {
    margin-right: 10px; /* Space between logo and title */
}

.page-title {
    font-size: 24px; /* Adjust size as needed */
    color: white; /* Change color as per your design */
}

body {
    font-family: Arial, sans-serif;
    margin: 0; /* zero was orig value */
    padding: 10px; /* Adjust this value for desired spacing */
    background-color: #f4f4f4;
}

header {
    background-color: #0056b3; /* Blue Header */
    color: white;
    padding: 10px 20px;
}

.logo img {
    max-width: 150px; /* Adjust logo size */
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav a {
    color: white;
    text-decoration: none;
}

section {
   margin-bottom: 20px; 
   padding :20 px ;
   border-radius :5 px ; 
   background-color :white ; 
   box-shadow :0 px 2 px 5 px rgba(0 ,0 ,0 ,0.1);
}

h2{
   color:#0056b3; /* Blue headings */
}
       
footer {
   text-align:center ;
   padding :10 px ;
   background-color:#333 ;
   color:white ; 
}  
