.site-footer {
  background-color: #f5f5f5;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}

.footer-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer-links {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 768px) {
  .footer-social {
    position: static;
    margin-bottom: 10px;
  }
  
  .footer-content-wrapper {
    flex-direction: column;
  }
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-icon#instagram-link {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon#instagram-link i {
  color: #fff;
}

.social-icon#youtube-link {
  background-color: #FF0000;
}

.social-icon#youtube-link i {
  color: #fff;
}

.social-icon#kakao-link {
  background-color: #FEE500;
}

.social-icon#kakao-link i {
  color: #3C1E1E;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-links a {
  color: #333;
  margin: 0 5px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links span {
  color: #ccc;
}

.footer-links a:hover {
  color: #007bff;
  text-decoration: underline;
}

.footer-copy {
  color: #888;
  margin-bottom: 15px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 0 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

.footer-info-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.footer-info span {
  white-space: nowrap;
  color: #555;
}

.footer-info strong {
  color: #333;
  font-weight: 600;
  margin-right: 3px;
}

.footer-info a {
  color: #007bff;
  text-decoration: none;
  margin-left: 5px;
  transition: color 0.3s ease;
}

.footer-info a:hover {
  color: #0056b3;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-size: 12px;
  }
  
  .footer-info span {
    white-space: normal;
  }
}
