.site-footer {
  background-color: #f2f2f2; /* Assuming a light gray background */
  color: #333; /* Dark text for readability */
  padding: 50px 0;
  font-size: 0.9em;
  margin:auto;
  justify-content: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  max-width: 1140px; /* Adjust based on your site's max width */
  margin: 0 auto;
  padding: 0 15px;
  margin:auto;
}

.footer-address, .footer-navigation, .footer-social-media, .footer-newsletter {
  margin-bottom: 30px;
}

.footer-address h3, .footer-social-media h3, .footer-newsletter h3 {
  margin-bottom: 15px;
  font-size: 1.5em;
  color: #000; /* Assuming black headings */
}

.footer-address address {
  font-style: normal;
  line-height: 1.6;
}

.contact-link {
  display: inline-block;
  margin-top: 15px;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.contact-link:hover {
  border-bottom: 1px solid #333;
}

.footer-navigation .footer-column h4 {
  font-size: 1.2em;
  color: #333; /* Heading color */
  margin-bottom: 10px;
}

.footer-navigation ul {
  list-style: none;
  padding: 0;
}

.footer-navigation li a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-navigation li a:hover {
  color: #333;
}

.footer-social-media .instagram-handle {
  font-size: 1em;
  color: #333;
  text-decoration: none;
}

.footer-newsletter form {
  margin-top: 15px;
}
.footer-newsletter input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc; /* Light grey border */
  margin-right: 10px;
  width: 70%; /* Adjust as needed */
}

.footer-newsletter button {
  padding: 10px 20px;
  border: none;
  background-color: #333; /* Dark background for the button */
  color: #fff; /* White text for the button */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: #555; /* Slightly lighter on hover */
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #ddd; /* Light grey border for a subtle division */
}

.footer-bottom p {
  margin-bottom: 0; /* Removes default margin */
}

.payment-icons {
  margin-top: 10px;
}

.payment-icons img {
  margin: 0 5px; /* Space out the payment method icons */
  vertical-align: middle; /* Align icons correctly with the text if necessary */
}

@media (max-width: 768px) {
   .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .footer-address, .footer-navigation, .footer-social-media, .footer-newsletter {
    margin-bottom: 20px;
    text-align: center; /* Center-align text for better appearance */
  }

  .footer-address h3, .footer-social-media h3, .footer-newsletter h3 {
    font-size: 1.2em; /* Slightly larger headings for readability */
  }

  .footer-address address, .contact-link, .footer-navigation li a, .instagram-handle {
    font-size: 1em; /* Increase font size for better readability */
  }

  .footer-navigation ul {
    padding-left: 0; /* Remove padding for a cleaner look */
  }

  .footer-navigation .footer-column h4 {
    margin-bottom: 15px;
  }

  .footer-newsletter input[type="email"], .footer-newsletter button {
    width: 90%; /* Full width on mobile */
    margin: 10px 0; /* Stack the input and button */
  }

  .footer-newsletter button {
    padding: 15px 20px; /* Larger button for easier interaction */
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }

  .payment-icons img {
    margin: 0 10px; /* Increase spacing between icons */
  }
}