.content {
    padding: 1rem 1.5rem 0;
    max-width: 900px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
  }
  
.title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #4e54c8;
  margin-bottom: 0.5rem;
}

.desc {
  color: #555;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.map-container {
  width: 100%;
  max-width: 600px;   
  aspect-ratio: 1 / 1;  
  margin: 0 auto 140px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

#map-section {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 1rem;   /* 좌우 여백 */
  padding-right: 1rem;
  box-sizing: border-box; /* 패딩이 너비에 포함되도록 */
  text-align: center; /* 텍스트 및 인라인 요소 중앙정렬 */
}


#main-section,
#map-section {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

.map-contact {
  max-width: 900px;
  margin: 0 auto 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
}


.phone-link {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: linear-gradient(135deg, #444, #222); /* 진한 회색 그라디언트 */
  color: white;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.phone-link:hover {
  background: linear-gradient(135deg, #222, #000);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.phone-link::before {
  content: "📞 ";
  margin-right: 0.3rem;
}


.map-container .iframe-map{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: white;
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}