 body {
     font-family: Arial, sans-serif;
     margin: 0;
     padding: 0;
     box-sizing: border-box;

 }

 .navbar {
     display: flex;
     position: sticky;
     top: 0;
     z-index: 10;
     justify-content: space-between;
     align-items: center;
     background-color: white;
     color: black;
     box-shadow: 2px 2px 13px 0px #2e2e2e;
     padding: 0.8rem 2rem;
     flex-wrap: wrap;
 }

 .logo-div {
     display: flex;
     gap: 10px;
     justify-content: center;
     align-items: center;
     font-weight: 700;
     font-size: 20px;
 }

 .nav-links {
     display: flex;
     gap: 1.5rem;
 }

 .nav-links a {
     color: black;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s;
     font-size: 20px;
 }

 .nav-links a:hover {
     color: #035efc;
 }

 .navbar img {
     height: 50px;
     width: auto;
     border-radius: 50%;
 }

 .menu-toggle {
     display: none;
     font-size: 28px;
     cursor: pointer;
 }

 @media (max-width: 768px) {
     .nav-links {
         flex-direction: column;
         width: 100%;
         display: none;
         background-color: white;
         padding: 1rem 0;
     }

     .nav-links.active {
         display: flex;
     }

     .nav-links a {
         padding: 10px 20px;
         border-top: 1px solid #eee;
     }

     .menu-toggle {
         display: block;
         color: black;
     }
 }

 header {

     padding: 20px;
     text-align: center;
 }

 main {
     padding: 30px;
     max-width: 900px;
     margin: auto;
     background: white;
     box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 }

 h2 {
     color: #2c3e50;
     margin-top: 40px;
 }

 p {
     line-height: 1.6;
     margin-bottom: 20px;
 }

 ul {
     margin-left: 20px;
     line-height: 1.6;
 }


 footer {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     color: white;
     background: #2c3e50;
     text-align: center;
     padding: 15px;
     margin-top: 40px;
     height: 300px;
     padding: 20px;
     text-align: center;
     font-size: 14px;

 }