.footer-section {
  color: #333;
  background-color: white;
  font-family: "Arial", sans-serif;
}

.footer-section .container {
  max-width: 1200px;
}

/* Logo and Address Styling */
.shared-logo {
  max-height: 60px;
  margin-bottom: 15px;
}

.address-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.location-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.address-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

/* Quick Links and Social Links Styling */
.footer-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.footer-links {
  color: #3498db;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links:hover {
  color: #1abc9c;
}

.footer-links i {
  margin-right: 8px;
}

/* Social Icons */
.icon-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-logo-image {
  max-height: 25px;
  transition: transform 0.3s ease;
}

.footer-logo-image:hover {
  transform: scale(1.1);
}

/* Bottom Section */
.bg-row {
  background-color: #ebf4fe;
  padding: 15px 0;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  text-align: center;
  margin-bottom: 10px;
}

.footer-left {
  text-align: center;
  font-size: 12px;
}

.footer-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer-text {
  font-size: 12px;
  color: var(--text-gray);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}

.powered-by-line,
.built-on-line {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-top: 5px;
}

.logo-image {
  max-height: 20px;
  margin-left: 5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-section .row {
    text-align: center;
  }

  .address-container {
    justify-content: center;
  }

  .quick-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-row {
    flex-direction: column;
    gap: 15px;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .footer-info {
    flex-direction: column;
  }

  .footer-text {
    white-space: normal;
  }

  .powered-by-line,
  .built-on-line {
    flex-direction: column;
    align-items: center;
  }

  .icon-row {
    justify-content: center;
  }
}
