footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    position: relative;
  }
  
  footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px; /* 로고와 텍스트 간의 간격 */
  }
  
  footer img {
    width: 250px;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    filter: invert(100%) brightness(100) contrast(1.5);
  }
  
  footer div {
    text-align: left; /* 텍스트를 왼쪽 정렬 */
  }
  
  footer p {
    margin: 5px 0;
    font-size: 14px;
  }
  
  footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  