/* CSS for section section:Footer */
#footer {
  background-color: #111111;
  color: #ffffff;
  padding: 0 0 40px 0;
  font-size: 14px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col:first-child {
  flex: 2;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-logo span {
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-info p {
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.5;
}

.footer-address h5,
.footer-col h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-address p,
.footer-col p {
  color: #ffffff;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.divider {
  height: 1px;
  background-color: #333;
  width: 100%;
  margin-bottom: 30px;
}

.disclaimer {
  color: #666;
  font-size: 12px;
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
  }
}
