.footer {
    background-color: #4b53ec;
    color: white;
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    margin-bottom: 10px;
  }
  
  .footer-links a {
    color: white;
    text-decoration: none;
    margin: 5px 0;
    display: block;
  }
  
  .footer-rights {
    border-top: 1px solid white;
    padding-top: 10px;
    margin-top: 10px;
    font-size: 14px;
  }
  
  /* Responsive adjustments */
  @media (min-width: 768px) {
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      width: 80%;
      margin: auto;
    }
  
    .footer-links a {
      margin: 0 15px;
      display: inline;
    }
  
    .footer-rights {
      margin-top: 0;
      padding-top: 0;
      border-top: none;
    }
  }