<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
  /*header*/ 
  header {
    background-color: var(--muted-orange);
    border-bottom: 1px solid #ddd;   
    position: fixed;
    width: 100%;
    z-index: 1;
  }

  .logo img{
    width: 50px;
    height: 50px;
  }
  
  .navbar {
    margin: 0 auto;
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 400;
  }
  
  .nav-buttons button {
    margin-left: 1rem;
    padding: 0.7rem 1.1rem;
    border: 1px solid #000;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
  }

  /*mobile header*/
.mobile-header {
  position: fixed;
  background-color: var(--muted-orange);
  color: #000;
  font-family: 'Merriweather', sans-serif;
  display: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 1.5em;
}


.logo img {
  max-width: 120px;
}

.hamburger img{
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.home img{
  width: 30px;
  height: 30px;
  cursor: pointer;
}

/*side nav*/
.mobile-nav {
  position: fixed;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--dark-text);
  padding: 3em 2em;
  transition: left 0.3s ease;
  z-index: 1000;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
}

.mobile-nav li {
  margin-bottom: 1.5em;
}

.mobile-nav a {
  color: var(--white-text);
  text-decoration: none;
  font-size: 1.2rem;
}

.close-btn {
  font-size: 2rem;
  position: absolute;
  top: 1em;
  right: 1em;
  cursor: pointer;
  color: var(--white-text);
}


  /*whatsapp button*/
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseScale 1.5s infinite;
    z-index: 1000;
    transition: transform 0.3s;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-float img {
    width: 35px;
    height: 35px;
  } 

  
  @keyframes pulseScale {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.15);
    }
    100% {
      transform: scale(1);
    }
  }

  /*footer*/
  .site-footer {
    background: var(--navy-blue);
    color: #ffffff;
    padding: 3rem 2rem;
    font-size: 0.95rem;
  }
  
  .site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-contact,
  .footer-nav,
  .footer-social {
    flex: 1;
    min-width: 200px;
  }
  
  .footer-contact h4,
  .footer-nav h4,
  .footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  
  .footer-contact a,
  .footer-nav a {
    color: #ffffff;
    text-decoration: none;
  }
  
  .footer-contact a:hover,
  .footer-nav a:hover {
    text-decoration: underline;
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav li {
    margin-bottom: 0.5rem;
  }
  
  .footer-social .social-icons {
    display: flex;
    gap: 0.75rem;
  }
  
  .footer-social img {
    width: 30px;
    height: 30px;
    transition: transform 0.2s ease;
  }
  
  .footer-social img:hover {
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 1rem;
    text-align: center;
  }
  
  .footer-bottom a {
    color: #ffa726;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  } 

@media(max-width: 768px) {
    .mobile-header{
      display: block;
    }
  
    .hamburger {
      display: block;
    }
  
    .nav-links,
    .nav-buttons {
      display: none;
    }
  
    .logo {
      text-align: center;
    }
  }

  @media(max-width:576px){
    .footer-top{
      display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    }
  }

  @media(max-width:480px){
    .mobile-nav {
      width: 350px;
    }
  }

  @media(max-width:380px){
    .mobile-nav {
      width: 300px;
    }
  }</pre></body></html>