.footer-bg {
  background-color: #273b79;
  color: #f4f4f4;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

/* Footer container with space-evenly for equal spacing */
.footer-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  padding: 0 50px;
  gap: 20px;
}

/* Section and logo styling */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Align items to the left */
  text-align: left;
}

/* Centered logo container */
.footer-logo-container {
  align-items: center;
  text-align: center;
  margin-top: 15px;
}

.footer-logo-container img {
  width: 200px;
  margin-bottom: 10px;
}

.instagram-icon {
  color: #f4f4f4;
  font-size: 30px;
  transition: color 0.3s ease;
  margin-top: 10px;
  text-decoration: none;
}

.instagram-icon:hover {
  color: #3498db
}

/* Section headings styling */
.footer-section h5 {
  font-size: 20px;
  font-weight: bold;
  color: #f4f4f4;
  margin-bottom: 15px;
  text-transform: uppercase;
  padding: 8px 15px;
  border: 1px solid #f4f4f4;
  border-radius: 5px;
  white-space: nowrap;
}

/* Footer links styling */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}

.footer-links a {
  color: #f4f4f4;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  padding-left: 5px;
}

.footer-links a:hover {
  color: #3498db;
}

/* Footer bottom section */
#footer_b {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #fff;
  text-align: center;
  font-size: 14px;
  color: #fff;
  width: 100%;
}

#footer_b a {
  color: #f4f4f4;
  text-decoration: none;
}

#footer_b a:hover {
  color: #0d6efd;
}

.instagram-icon {
  color: #f4f4f4;
  font-size: 30px;
  transition: color 0.3s ease;
  margin-top: 10px;
  text-decoration: none;
}

.instagram-icon:hover {
  color: #3498db;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  /* Horizontal layout on mobile with centered elements */
  .footer-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
    padding: 0 10px;
  }

  .footer-section h5 {
    font-size: 18px;
    margin: 5px 0;
    padding: 6px 10px;
  }

  .footer-logo-container img {
    width: 140px;
  }

  .footer-links a {
    font-size: 14px;
    padding-left: 10px;
  }
}

@media (max-width: 576px) {
  /* Adjustments for extra small screens */
  .footer-logo-container img {
    width: 120px;
  }

  .footer-section h5 {
    font-size: 16px;
  }

  .footer-links a {
    font-size: 13px;
  }

  #footer_b {
    font-size: 13px;
  }
}
