.footer {
  background-color: #2c2c2c;
  color: #ccc;
  padding: 40px 20px;
  font-size: 14px;
}

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

.footer-info {
  flex: 1 1 50%;
  min-width: 300px;
  order: 1; /* PC 기준 왼쪽 */
  text-align: left;
}

.footer-customer {
  flex: 1 1 40%;
  min-width: 300px;
  order: 2; /* PC 기준 오른쪽 */
  text-align: left;
}


.footer h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  text-align: left;	
}

.phone {
  font-size: 28px;
  font-weight: bold;
  color: #e7882c;
  margin-bottom: 8px;
}

.footer-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size:18px;	
}

.footer-buttons .btn {
  background-color: #e7882c;
  color: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.footer-buttons .btn:hover {
  background-color: #fff;
  color: #313131;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  margin-right: 10px;
  font-size:12px;	
  color: #aaa;
  text-decoration: none;
}


/* ✅ 반응형 모바일   */
@media (max-width: 767px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    
  }

  .footer-customer {
    order: 1;  /* 모바일에서는 위로 */
    width: 100%;

  }

  .footer-info {
    order: 2;  /* 모바일에서는 아래로 */
    width: 100%;
  }
	
.footer-info p{
 font-size:12px;
}
  .footer-buttons {
    justify-content: center;
    flex-direction: column;
  }

  .footer-buttons .btn {
    width: 30%;
    text-align: center;
  }
}