.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: Arial, sans-serif;
    padding: 20px 0;
  }

  .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }

  .footerlogo {
    text-align: center;
    margin-bottom: 20px;
  }

  .footerlogo img {
    width: 150px;
    height: auto;
  }

  .footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
  }

  .footer-section h3 {
    color: #e74c3c;
    margin-bottom: 15px;
  }

  .footer-section ul {
    list-style-type: none;
    padding: 0;
  }

  .footer-section ul li {
    margin-bottom: 10px;
  }

  .footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .footer-section ul li a:hover {
    color: #e74c3c;
  }

  .social-icons {
    display: flex;
    gap: 15px;
  }

  .social-icon {
    color: #ecf0f1;
    font-size: 24px;
    transition: color 0.3s ease;
  }

  .social-icon:hover {
    color: #e74c3c;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
  }

  .footer-bottom a {
    color: white;
    text-decoration: none;
  }

  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      align-items: center;
    }

    .footer-section {
      text-align: center;
      margin-bottom: 30px;
    }
  }