* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Apple SD Gothic Neo", sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

header {
  background: #d10000;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

.banner img {
  width: 100%;
  display: block;
}

.services,
.areas,
.contact {
  padding: 1.2rem;
  border-bottom: 1px solid #eee;
}

.services h2,
.areas h2,
.contact h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #d10000;
}

.services ul {
  list-style: none;
}

.services li {
  margin-bottom: 0.5rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.area-list button {
  flex: 1 1 30%;
  padding: 0.6rem;
  background: #f1f1f1;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.area-list button:hover {
  background: #d10000;
  color: #fff;
}

.area-content {
  margin-top: 1rem;
  padding: 1rem;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.contact p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.contact a {
  color: #d10000;
  font-weight: bold;
  text-decoration: none;
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  background: #f2f2f2;
  color: #555;
}

@media (min-width: 768px) {
  .area-list button {
    flex: 1 1 18%;
  }
}

.therapist-list {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.therapist-card {
  flex: 1 1 45%;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.therapist-card img {
  width: 100%;
  height: auto;
}

.therapist-info {
  padding: 0.8rem;
}

.therapist-info h4 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: #d10000;
}

.therapist-info p {
  margin: 0.2rem 0;
  font-size: 0.9rem;
  color: #555;
}

@media (min-width: 768px) {
  .therapist-card {
    flex: 1 1 22%;
  }
}
.filters {
  padding: 1rem;
  background: #f8f8f8;
}
.filters select {
  margin-right: 0.5rem;
  padding: 0.4rem;
}
.filters button {
  padding: 0.5rem 1rem;
  background: #d10000;
  color: #fff;
  border: none;
  border-radius: 4px;
}

/* 별점 */
.star {
  color: gold;
  font-size: 1.1rem;
}

/* 모달 스타일 */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.modal-content {
  background: white;
  padding: 1.5rem;
  max-width: 90%;
  margin: 10% auto;
  border-radius: 8px;
  position: relative;
  text-align: center;
}

.modal-content img {
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
.course-section {
  padding: 1.5rem;
  background: #fff9f9;
}

.course-section h2 {
  font-size: 1.5rem;
  color: #d10000;
  margin-bottom: 1rem;
}

.course-box {
  border: 1px solid #f2c2c2;
  background: #fff;
  border-left: 4px solid #d10000;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.course-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  color: #333;
}

.course-box .time {
  font-size: 0.95rem;
  margin-left: 0.5rem;
  color: #555;
}

.course-box .price {
  float: right;
  font-weight: bold;
  color: #d10000;
}

.course-box p {
  font-size: 0.95rem;
  color: #666;
  margin-top: 0.4rem;
}

@media (max-width: 480px) {
  .course-box .price {
    display: block;
    float: none;
    margin-top: 0.3rem;
  }
}
.intro-section {
  padding: 1.5rem;
  background: #fff;
}

.intro-section h2 {
  font-size: 1.6rem;
  color: #d10000;
  margin-bottom: 1rem;
  text-align: center;
}

.intro-box p {
  margin-bottom: 0.8rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.intro-point,
.intro-core {
  background: #fff5f5;
  padding: 1rem;
  margin: 1rem 0;
  border-left: 5px solid #d10000;
  border-radius: 6px;
}

.intro-point h3,
.intro-core h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  color: #d10000;
}

.intro-point ul,
.intro-core ul {
  list-style: none;
  padding-left: 0;
}

.intro-point li,
.intro-core li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}

.intro-end {
  margin-top: 1.5rem;
  text-align: center;
  font-weight: bold;
  color: #d10000;
  font-size: 1.1rem;
}

