.footer {
  background: #fafafa;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #52525b;
  box-sizing: border-box;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.footer-info {
  display: flex;
  flex-direction: column;
  
  gap: 16px;
  width: 300px;
}

.footer-logo {
  width: 127px;
  height: auto;
  max-width: 100%;
  scale: 1.2;
}

.footer-text {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
}
.contact-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.footer-links {
  flex: 2 1 500px;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 150px;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  color: #045182;
  margin: 0 0 15px 0;
  position: relative;
  padding-bottom: 8px;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #045182;
}

.footer-column a {
  text-decoration: none;
  color: #52525b;
  font-size: 15px;
  transition: color 0.3s ease;
  line-height: 1.6;
}
.footer-column a:hover {
  color: #045182;
  text-decoration: underline;
}

.facebook-column {
  width: fit-content;
}

.facebook-iframe-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  
  border-radius: 8px;
  min-height: 420px;
}

.facebook-iframe-container iframe {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: white;
}

.footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

@media (max-width: 992px) {
  .footer {
    padding: 40px 15px;
  }
  .footer-container {
    gap: 30px;
  }
  .footer-links {
    gap: 30px;
  }
  .footer-column {
    min-width: 120px;
  }
  .facebook-column {
    min-width: 280px;
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
  }
  .footer-info {
    order: 2;
    width: 100%;
    max-width: 100%;
  }
  .footer-links {
    order: 1;
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;

    gap: 20px;
  }
  .footer-column {
  }
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
  }
}/*# sourceMappingURL=footer.css.map */