footer {
  background-color: #222;
  color: white;
  padding: 20px 0;
  text-align: left;
  font-family: Arial, sans-serif;
}

.footer-logo {
  width: 100px;
  margin-bottom: 15px;
}

.social-links img {
  width: 25px;
  margin: 0 5px;
  transition: transform 0.2s;
}

.social-links img:hover {
  transform: scale(1.2);
}

.footer-section h4 {
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section ul li {
  margin: 8px 0;
}

.footer-link {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-link:hover {
  text-decoration: underline;
  color: #b74b69;
}

.contact-addresses {
  gap: 20px 70px; 
}

.contact-item a {
  display: block;
  font-size: 14px;
  color: white;
  margin: 4px 0;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
  color: #b74b69;
}

.footer-bottom {
  color: #aaa;
  font-size: 14px;
  padding: 15px 0;
  border-top: none;
  margin-top: 20px;
  position: relative;
}

.footer-bottom span {
  padding: 0 15px;
  position: relative;
  z-index: 1;
}

.footer-bottom::before,
.footer-bottom::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #666;
  margin: 0 10px;
  display: inline-block;
}

.footer-column-reduced-gap {
  padding-left: 5px;  /* Adjust this value as needed */
  padding-right: 5px; /* Adjust this value as needed */
}

.gap{
  padding-left: 10px; /* Adjust this value as needed */
  padding-right: 10px; /* Adjust this value as needed */
}

footer .container {
  max-width: 95%; /* Or you can use a pixel value like 1600px */
}

.footer-shift-left {
  margin-left: -135px;
}
.footer-shift-right {
  margin-right: -135px;
}

@media (max-width: 768px) {
  .footer-shift-left,
  .footer-shift-right {
    margin-left: 20px !important;
    margin-right: 0 !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .contact-addresses {
    flex-direction: column;
    gap: 20px; /* Reduce horizontal spacing on smaller screens */
  }

  .contact-item {
    min-width: 100% !important;
  }

  
  .footer-bottom {
    text-align: center;
    font-size: 9px;
  }
    h4 {
    font-size: 20px !important; /* or smaller if needed */
  }
}
