#footer {
    background-color: #000000;
}
  
  /* Footer Styling */
  #main-footer {
      color: white;
      padding: 3rem 2rem;
      text-align: left;
      background-color: rgb(0, 0, 0, 0.2);
  }
  
  .footer-container {
      display: flex;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
      text-align: center;
  }
  
  .footer-container div {
      flex: 1 1 30%;
      margin: 1rem 0;
  }
  
  .footer-container h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
  }
  
  .footer-container p,
  .footer-container a {
      color: #ccc;
      font-size: 1rem;
      text-decoration: none;
      margin-bottom: 0.5rem;
  }
  
  .footer-container p i {
      margin-right: 0.5rem;
      color: orange;
  }
  
  
  
  /* Footer Links */
  .footer-links ul {
      list-style: none;
      padding: 0;
  }
  
  .footer-links ul li {
      margin-bottom: 0.5rem;
  }
  
  .footer-links ul li a {
      transition: color 0.3s ease;
  }
  
  .footer-links ul li a:hover {
      color: #f0a500;
  }
  
  /* Social Media Icons */
  .footer-socials{
    display: flex;
    justify-content: center;
  }
  
  .footer-social img {
    width: 30px;
  }
  
  
  .footer-social a {
  
      margin-right: 0.5rem;
      font-size: 1.5rem;
      color: rgb(204, 204, 204);
      transition: color 0.3s ease;
  }
  
  
  /* Contact Info */
  .footer-contact p {
      margin-bottom: 0.5rem;
  }
  
  /* Bottom Footer */
  .footer-bottom {
      text-align: center;
      padding: 1rem;
      margin-top: 2rem;
  }
  
  .footer-bottom p {
      margin: 0;
      font-size: 0.9rem;
      color: #999;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
      .footer-container {
          flex-direction: column;
          text-align: center;
      }
  
      .footer-container div {
          flex: 1 1 100%;
      }
  
      .footer-container div:not(:last-child) {
          margin-bottom: 2rem;
      }
  
      .footer-social a {
          margin-right: 1rem;
      }
  }