/* footer_style.css */
/* Footer shell */
.site-footer {
  position: static;
  width: 100%;
  height: auto;
  background: #1E3F20; /* Color Black Forest */
  color: #F0F8FF; /* Color White */
  padding: 1.5rem 0 0.5rem 0;
}
/* Footer row */
.footer-row {
  width: 100%;
}
/* Footer sections */
.footer-left {
  padding: 0 1.5rem 0 0;
  border-right: thin solid #EF5BA1; /* Color Deep Pink */
}
.footer-center {
  min-width: 0;
  padding: 0 1.5rem;
  color: #1E3F20;
  border-right: thin solid #EF5BA1; /* Color Deep Pink */
}
.footer-right {
  padding: 0 0 0 1.5rem;
}
/* Footer-left contact grid */
.footer-contact-grid {
  width: 100%;
}
/* Footer-left icon/contact rows */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-contact-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
  align-self: flex-start;
  margin-top: 0;
}
.footer-contact-text {
  min-width: 0;
}
.footer-contact-text h5 {
  margin: 0;
  line-height: 1;
}
.footer-contact-text p {
  margin: 0;
}
/* Logo blocks inside footer-center */
.footer-logo-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  text-align: center;
}
.footer-logo-block {
  flex: 0 0 auto;
}
/* Text styles */
.site-footer p {
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
  font-size: 0.9rem;
}
.site-footer a:hover,
.site-footer a:focus {
  color: #347FCA; /* Color SteelBlue */
  font-weight: inherit;
  text-decoration: none;
}
.site-footer h5 {
  margin: 0 0 0 0;
  color: #F0F8FF; /* Color White */
}
.site-footer p.footer-smalltext {
  font-size: 0.7rem; 
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-align: center;
  color: #347FCA; /* Color SteelBlue */
}
.site-footer p.footer-copyright {
  display: block;
  width: 100%;
  height: 30px;
  text-align: center;
  font-weight: 400;
  color: #F0F8FF; /* Color White */
}
/* Large screens: equal-height columns */
@media (min-width: 992px) {
  .footer-left, .footer-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
/* Small screens: stacked layout */
@media (max-width: 991.98px) {
  .footer-left, .footer-center, .footer-right {
    padding: 0.75rem 0;
    border-right: 0;
  }
}