 body {
   background-color: #222;
   font-family: Arial, sans-serif;
   margin: 0;
   padding: 0;
 }

 .navbar {
   background-color: #222;
   color: white;
   padding: 15px 20px;
   display: flex;
   justify-content: space-around;
   align-items: center;
 }


 .logo {
   font-size: 1.5rem;
   font-weight: bold;
   display: flex;
   justify-content: center;
   align-items: center;
 }


 .logo h1 {
   font-size: 22px;
 }

 .logo img {
   width: 99px;
   filter: invert(50%);
   filter: brightness(100);
 }

 .nav-links {
   list-style: none;
   display: flex;
   gap: 20px;
 }

 .nav-links li a {
   color: white;
   text-decoration: none;
   padding: 8px 12px;
   transition: 0.4s;
 }

 .nav-links li a:hover {
   background-color: #6c6c6cb2;
   border-radius: 5px;
   padding: 12px;
 }

 @media (max-width:444px) {
  .whatsapp-float{
    right: 0;
    bottom: 88px;
  }
}


 /* Responsive for mobile */
 @media (max-width: 555px) {
   .nav-links {
     flex-direction: column;
     background-color: #222;
     width: 100%;
     top: 60px;
     left: 0;
   }

   .logo {
     flex-direction: column;
   }

   .nav-links.active {
     display: flex;
   }


 }


 .footer {
   justify-content: center;
   background-color: #222;
   color: #ddd;
   padding: 40px 20px 20px;
   font-size: 16px;
   position: relative;
 }

 .footer-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   max-width: 1200px;
   margin: auto;
   gap: 30px;

 }

 .footer-info h3 {
   color: #fff;
   margin-bottom: 10px;
 }

 .footer-info p,
 .footer-socials p {
   margin: 8px 0;
 }

 .footer-info a,
 .footer-socials a {
   color: #25D366;
   text-decoration: none;
 }

 .footer-info a:hover,
 .footer-socials a:hover {
   text-decoration: underline;
 }

 .footer-socials {
   display: flex;
   flex-direction: column;
 }

 .footer-bottom {
   text-align: center;
   margin-top: 30px;
   border-top: 1px solid #444;
   padding-top: 15px;
   font-size: 14px;
   color: #aaa;
 }

 /* Responsive */
 @media (max-width: 768px) {
   .footer-container {
     flex-direction: column;
     align-items: center;
     text-align: center;
   }

   .footer-socials {
     margin-top: 20px;
   }
 }

 .social-link {
   display: flex;
   align-items: center;
   margin-bottom: 10px;
   text-decoration: none;
   font-size: 18px;
   color: #000;
 }

 .social-link img {
   width: 25px;
   margin-right: 10px;
 }

 .social-link:hover {
   text-decoration: underline;
 }