.footer {
  background-color: #005E7D;      /* Dark background */
  color: #fff;                 /* White text */
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

/* Container flex for main footer content */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact section */
.footer-contact address {
  font-style: normal; /* Override italic default of address */
  line-height: 1.6;
  /*! color: white; */
}

/* Footer headings */
.footer-contact h2,
.footer-links h3 {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}

/* Links list without bullets and spacing */
.footer-links ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

/* Link styles */
.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #1e90ff; /* DodgerBlue on hover */
  outline: none;
}

/* Social media container */
.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Example social icon styling - add your own background or icon */
.social-icon.instagram {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url('instagram-icon.svg') no-repeat center center;
  background-size: contain;
  text-indent: -9999px; /* hide text if any */
}

/* Footer image styling */
.footer-image {
  max-height: 50px;
  width: auto;
  display: block;
  border-radius: 4px;
  background-color: white;
}

/* Footer bottom bar */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #444;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #aaa;
}

.footer-bottom a {
  color: #aaa;
  text-decoration: none;
  margin: 0 8px;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
  color: #1e90ff;
  outline: none;
}

/* Responsive: stack footer sections on small screens */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

