/* Layout Wrapper */
.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
}

/* Footer Styles */
.site-footer {
  background-color: #d1d5db;
  color: #374151;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

/* Logo Section */
.footer-logo-section {
  margin-bottom: 30px;
  text-align: center;
}

.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Navigation Links */
.footer-links {
  margin-bottom: 30px;
}

.footer-links a {
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  margin: 0 20px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #111827;
}

/* Copyright */
.footer-copyright p {
  color: #6b7280;
  font-size: 12px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    padding: 30px 15px;
  }
  
  .footer-logo {
    height: 32px;
  }
  
  .footer-links {
    margin-bottom: 25px;
  }
  
  .footer-links a {
    display: block;
    margin: 8px 0;
  }
}
