/* Footer Styling */
.footer {
  background-color: #f8f9fa;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

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

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

.footer .text-muted {
  font-size: 14px;
  color: #6c757d;
}

.footer .text-muted a {
  color: #007bff;
  text-decoration: none;
}

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

.footer .social-links {
  margin-top: 20px;
}

.footer .social-links .btn {
  padding: 12px;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .social-links .btn:hover {
  background-color: #007bff;
  color: #fff;
}

.footer .social-links .btn-outline-dark {
  border: 1px solid #333;
}

.footer .social-links .btn-outline-dark:hover {
  background-color: #333;
}

.footer .social-links .btn-outline-primary {
  border: 1px solid #007bff;
}

.footer .social-links .btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.footer .social-links .btn-outline-info {
  border: 1px solid #17a2b8;
}

.footer .social-links .btn-outline-info:hover {
  background-color: #17a2b8;
  color: #fff;
}

.footer .social-links .btn-outline-danger {
  border: 1px solid #dc3545;
}

.footer .social-links .btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer .social-links {
    text-align: center;
  }

  .footer .social-links .btn {
    margin: 5px;
    font-size: 16px;
  }
}
