/* ✅ 반응형 추가 */
@media (max-width: 768px) {
  .title {
    font-size: 28px;
  }
  .menu-link, .phone-link {
    font-size: 1rem;
    padding: 6px 10px;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
  .services {
    padding: 1rem;
  }
}
.card {
  flex: 1 1 100%;
  border: 1px solid #ccc;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f9f9f9;
}
.card h3 { color: #222; margin-top: 0; }
.card p { color: #555; }

.mobile-header {
  background-color: #014d4e;
  color: white;
  text-align: left;
  padding: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-header img {
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}
.hamburger {
  font-size: 24px;
  font-weight: bold;
  padding: 12px 16px;
  border-radius: 5px;
  background: #013d3e;
  color: white;
  cursor: pointer;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding: 0 1rem;
}

.mobile-nav a {
  display: block;
  padding: 14px;
  background-color: #014d4e;
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.mobile-nav a.phone {
  background-color: #ff7b00;
}

.mobile-section {
  padding: 1.5rem;
  text-align: center;
}
.mobile-section img {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  border-radius: 10px;
}
/* 이미지 슬라이드쇼 */
.slideshow-container {
width: 100%;
position: relative;
overflow: hidden;
}

.slide {
width: 100%;
display: none;
}

.slide.active {
display: block;
}

.dots-container {
text-align: center;
margin-top: 10px;
}

.dot {
height: 12px;
width: 12px;
margin: 0 5px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.3s ease;
}

.dot.active {
background-color: #014d4e;
}

.progress-bar {
width: 100%;
height: 4px;
background-color: #eee;
position: absolute;
bottom: 0;
left: 0;
overflow: hidden;
}

.progress-fill {
height: 100%;
width: 0%;
background-color: #ff7b00;
transition: width 5s linear;
}
