.footer {
  background-color: #f4f8fb;
  color: #007bff;
  padding: 50px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.footer-left img {
  width: 150px;
  height: auto;
}

.footer-middle {
  display: flex;
  gap: 20px;
  justify-content: center; 
  flex: 1;
}

.social-icon {
  color: #007bff;
  font-size: 2rem;
  text-decoration: none;
}

.social-icon:hover {
  color: #0056b3;
}

.footer-right {
  text-align: left;
}

.footer-right p {
  margin: 5px 0;
  font-size: 1.4rem; /* Increased font size */
}

.footer-right i {
  margin-right: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left,
  .footer-middle,
  .footer-right {
    width: 100%;
    margin: 10px 0;
  }

  .footer-middle {
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
  }

  .footer-right {
    text-align: center;
  }

  .footer-right p {
    font-size: 1.1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .footer-left img {
    width: 120px;
  }

  .footer-middle {
    justify-content: center;
    margin: 70px 0;
  }

  .footer-right {
    text-align: center;
  }

  .footer-right p {
    font-size: 1.2rem;
  }
}