<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * @file
 * Styles for the GUDE Footer block.
 */

.region-footer {
  padding: 0;
  margin: 0;
  background-color: #1a2841;
  color: #fff;
}

.footer-container {
  width: 90%;
  margin: 0 auto;
  padding: 50px 0 20px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-logo {
  flex: 0 0 25%;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 20px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-links {
  flex: 0 0 20%;
}

.footer-contact {
  flex: 0 0 25%;
}

.footer-links h3,
.footer-contact h3 {
  color: #ff6600;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  position: relative;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 16px;
}

.footer-links ul li a:hover {
  color: #ff6600;
}

.footer-contact p {
  margin-bottom: 10px;
  font-size: 16px;
  color: #ccc;
}

.contact-phone {
  font-weight: 600;
}

.social-links {
  display: flex;
  margin: 20px 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #ff6600;
}

.website-link a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: #999;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 0 0 48%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
  
  .footer-logo,
  .footer-links,
  .footer-contact {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom p {
    margin-bottom: 10px;
  }
}
</pre></body></html>