.site-footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 40px 20px 20px;
  margin-top: 60px;
  border-top: 4px solid #007bff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  border-bottom: 2px solid #007bff;
  padding-bottom: 8px;
}

.footer-section p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 0.95rem;
  color: #bdc3c7;
}

.footer-section strong {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #34495e;
  color: #95a5a6;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 15px 15px;
    margin-top: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section h4 {
    font-size: 1rem;
  }

  .footer-section p {
    font-size: 0.9rem;
  }
}

/* Adjust body to accommodate footer */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Make sure main content takes up available space */
body > .container,
body > div:not(.site-footer):not(.navbar):not(.demo-banner):not(script) {
  flex: 1;
}

