/* FOOTER WRAPPER WITH BACKGROUND IMAGES ON LEFT/RIGHT */
.site-footer {
  position: relative;
  background-color: #1a5ea9;

  /* Two decorative images on left and right */
  background-image: url("../img/logo_1.png"), url("../img/logo_1.png");
  
  /* Shift left image more to the left and bottom, right image more to the right and top */
  background-position: -400px bottom, calc(100% + 150px) top;

  background-repeat: no-repeat, no-repeat;

  /* Resize if needed for better "half image" effect */
  background-size: 500px auto, 400px auto;

  color: #ffffff;
  padding: 2rem 1rem;
  font-family: "Quicksand", sans-serif;
}

/* FLEX CONTAINER FOR FOOTER COLUMNS */
.footer-content {
  display: flex;
  flex-wrap: wrap;       /* wrap on smaller screens */
  max-width: 1200px;
  margin: 0 auto;        /* center the columns */
  justify-content: space-between;
}

/* INCREASED COLUMN WIDTH (25% each for 4 columns) */
.footer-column {
  flex: 0 0 25%;
  box-sizing: border-box;
  margin: 1rem 0;
  min-width: 200px;      /* fallback for smaller screens */
}

/* HEADINGS & SPACING */
.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.footer-column hr {
  width: 40px;
  border: 1px solid #ffffff;
  margin-bottom: 1rem; /* extra spacing after underline */
}

/* TEXT & LINK STYLES */
.footer-column p,
.footer-column li,
.footer-column a {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #ffffff;
  text-decoration: none;
}

/* HOVER: WHITE TEXT, UNDERLINE IN #3fbfea */
.footer-column a:hover,
.share-btn:hover,
.footer-column button:hover {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #3fbfea;
}

/* QUICK LINKS LIST */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.footer-column ul li {
  margin: 0.5rem 0;
}

/* SHARE BUTTON – WIDER, CENTERED IN NEW ROW */
.share-container {
  text-align: center;
  margin-top: 3rem;
}
.share-btn {
  background-color: #ffffff;
  color: #333;
  padding: 0.3rem 2.5rem;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  display: inline-block;
  
}

.share-btn:hover {
  color: #3fbfea !important;
}


/* IF YOU WANT THE ARROW ICON WHITE, YOU CAN FORCE-COLOR THE SPAN */
.share-btn span {
  color: #333;
}

/* BOTTOM COPYRIGHT STRIP */
.footer-bottom {
  background-color: #000;
  text-align: center;
  color: #ccc;
  padding: 0.5rem 0;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* OPTIONAL: STYLE TRUE ICONS AS WHITE (IF USING <i> OR <svg>) 
.footer-column i, .footer-column svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}
*/

/* LOGO ADDED AFTER COOKIE POLICY */
.logo-5 {
  max-width: 200px;
  height: auto;
}

/* RESPONSIVE: STACK COLUMNS ON SMALL SCREENS */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-column {
    width: 100%;
    flex: none;
  }
  .site-footer {
    background-image: none;
  }
}

.cta-btnf {
  background-color: #ffffff;
  color: #1A5EA9;
  border: 2px solid #1A5EA9;
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btnf:hover {
  background-color: #1A5EA9;
  color: #ffffff;
}
