/* Footer */
.footer-inline {
  display: flex;
  align-items: center;
  margin: 0 auto;
    }

.footer-inline img {
  width: 70px;  /* Image size */
  height: auto;
  text-align: left;
  margin-right: 30px; /* Space between image and text */
	
}

.footer-inline .footer-text {
  color: #ffffff; /* If footer background is dark, keep text white */
  font-size: 14px;
	max-width: 480px;   /* Limit text width on desktop */
}

/* 🔗 Link color - keep white */
.footer-inline .footer-text a {
  color: #ffffff !important;
  text-decoration: none; /* Remove underline (optional) */
}

.footer-inline .footer-text a:hover {
  text-decoration: underline; /* Add underline on hover */
}

@media (max-width: 768px) {
  
  .footer-inline {
    flex-direction: column; /* Stack vertically on mobile */
    align-items: flex-start; /* Align to the left */
    text-align: left;
  }
	.footer-inline img {
    margin-bottom: 30px; /* Space between image and text */
	
}
}

@media (max-width: 1024px) {
    .footer-inline {
        display: flex;
        align-items: flex-start;
        max-width: 700px;
        margin: 0 auto;
    }
	 
    .footer-inline .footer-text {
        max-width: 450px;   /* Limit text width on tablet */
    }
}

/* Our story bottom images */
.equal-img img {
    height: 150px;
    width: auto;
    object-fit: cover;
}

/* tablet (max 1024px) */
@media (max-width: 1024px) {
    .equal-img img {
        height: 120px;
    }
}

/* mobile(max 767px) */
@media (max-width: 767px) {
    .equal-img img {
        height: 100px;
    }
}