/* 기본 스타일 */
:root {
  --primary: #4578c8;
  --primary-dark: #3a67a7;
  --secondary: #6ab04c;
  --dark: #333333;
  --light: #f8f9fa;
  --gray: #6c757d;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --text: #444444;
  --border: #dddddd;
  --success: #28a745;
  --danger: #dc3545;
}

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

body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style-position: inside;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.text-center {
  text-align: center;
}

/* 버튼 스타일 */
.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-more {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  position: relative;
  padding-right: 15px;
}

.btn-more:after {
  content: '→';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.btn-more:hover {
  color: var(--primary-dark);
}

.btn-more:hover:after {
  right: -5px;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background-color: var(--white);
  color: var(--primary);
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.btn-call i {
  margin-right: 10px;
  font-size: 1.2rem;
}

.btn-call:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* 헤더 스타일 */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
}

.desktop-nav ul li a {
  color: var(--dark);
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
}

.desktop-nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.desktop-nav ul li a:hover {
  color: var(--primary);
}

.desktop-nav ul li a:hover:after {
  width: 100%;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--dark);
  transition: all 0.3s ease;
}

/* 모바일 네비게이션 */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100%;
  background-color: var(--white);
  z-index: 1001;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 60px 20px 30px;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.mobile-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--gray);
  cursor: pointer;
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav ul li {
  margin-bottom: 15px;
}

.mobile-nav ul li a {
  display: block;
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
}

.mobile-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.mobile-contact p {
  display: flex;
  align-items: center;
  color: var(--gray);
  margin-bottom: 10px;
}

.mobile-contact p i {
  margin-right: 10px;
  color: var(--primary);
}

/* 히어로 섹션 */
.hero {
  position: relative;
  height: 600px;
  margin-top: 80px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/relaxingforest_00.jpeg');
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 600px;
  padding-top: 150px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

@media (min-width: 1201px) {
  .hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}

/* 빠른 정보 섹션 */
.quick-info {
  padding: 80px 0 40px;
  background-color: var(--light);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-item .icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.info-item p {
  color: var(--gray);
  margin-bottom: 8px;
}

/* 진료과목 섹션 */
.departments {
  padding: 80px 0;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.department-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.department-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
}

.dept-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.department-card h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.department-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 20px;
}

.department-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--text);
}

.department-card ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* 의료진 섹션 */
.doctors {
  padding: 80px 0;
  background-color: var(--light);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.doctor-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.doctor-image {
  height: 250px;
  overflow: hidden;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);
}

.doctor-info {
  padding: 20px;
}

.doctor-info h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.doctor-title {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
}

.doctor-education, .doctor-specialty {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

/* 심리상담 섹션 */
.counseling {
  padding: 80px 0;
  background-color: var(--white);
}

.counseling-wrap {
  display: flex;
  align-items: center;
  background-color: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.counseling-text {
  flex: 1;
  padding: 50px;
}

.counseling-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: var(--dark);
}

.counseling-text p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.counseling-list {
  list-style: none;
  margin-bottom: 30px;
}

.counseling-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.counseling-list li i {
  color: var(--success);
  margin-right: 10px;
}

.counseling-image {
  flex: 1;
  height: 400px;
}

.counseling-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 공지사항 섹션 */
.notice {
  padding: 80px 0;
  background-color: var(--light);
}

.notice-list {
  margin-bottom: 40px;
}

.notice-item {
  display: flex;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.notice-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.notice-date {
  background-color: var(--primary);
  color: var(--white);
  padding: 20px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.notice-date .day {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.notice-date .month {
  font-size: 1rem;
}

.notice-content {
  padding: 20px 30px;
  flex: 1;
}

.notice-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.notice-content p {
  color: var(--gray);
  margin-bottom: 15px;
}

.notice-more {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
}

.notice-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.notice-more:hover i {
  transform: translateX(5px);
}

/* 오시는 길 섹션 */
.location {
  padding: 80px 0;
}

.location-wrap {
  display: flex;
  gap: 40px;
}

.map-container {
  flex: 3;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(248, 249, 250, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  font-size: 1.2rem;
  color: var(--gray);
}

.location-info {
  flex: 2;
}

.location-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.location-info p {
  display: flex;
  align-items: flex-start;
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.location-info p i {
  color: var(--primary);
  margin-right: 10px;
  margin-top: 5px;
}

.transportation {
  margin-bottom: 30px;
}

.transport-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.transport-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  background: none !important;
  color: inherit;
  box-shadow: none;
}

.transport-icon svg {
  width: 32px;
  height: 32px;
  display: block;
}

.transport-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.transport-detail h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.transport-detail p {
  margin-bottom: 5px;
  font-size: 1rem;
}

.transport-item:last-child {
  margin-bottom: 0;
}

.subway-line {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-right: 5px;
}

.subway-line.line5 {
  background-color: #8b50a4;
}

.subway-line.line9 {
  background-color: #cea43a;
}

.bus-type {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  margin-right: 5px;
}

.bus-type.general {
  background-color: #3e7ddb;
}

.bus-type.green {
  background-color: #5cb95c;
}

/* 병원 둘러보기 섹션 */
.tour {
  padding: 80px 0;
  background-color: var(--light);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 푸터 */
footer {
  background-color: var(--dark);
  padding: 80px 0 30px;
  color: var(--light);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
}

/* 페이지 헤더 */
.page-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 100px 0 40px;
  text-align: center;
  margin-top: 80px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--white);
}

.page-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* 의료진 페이지 스타일 */
.doctors-page {
  padding: 60px 0;
}

.doctor-card.large {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.doctor-card.large:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.doctor-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 15px;
}

.detail-item h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.detail-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-item ul li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: var(--text);
}

.detail-item ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* 심리상담 페이지 스타일 */
.counseling-intro {
  padding: 60px 0;
  background-color: var(--light);
}

.intro-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.intro-image {
  flex: 1;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-text {
  flex: 1;
  padding: 20px;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--dark);
}

.intro-text p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.counseling-services {
  padding: 60px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
  text-align: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark);
  text-align: center;
}

.service-card p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-details {
  list-style: none;
  border-top: 1px solid var(--light-gray);
  padding-top: 15px;
}

.service-details li {
  padding: 5px 0 5px 20px;
  position: relative;
}

.service-details li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.psychological-tests {
  padding: 60px 0;
  background-color: var(--light);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.tests-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.test-category {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.test-category h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.test-category h3 i {
  color: var(--primary);
  margin-right: 10px;
}

.test-category ul {
  list-style: none;
  padding: 0;
}

.test-category ul li {
  padding: 8px 0 8px 15px;
  position: relative;
  border-bottom: 1px dashed var(--light-gray);
}

.test-category ul li:last-child {
  border-bottom: none;
}

.test-category ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.counseling-process {
  padding: 60px 0;
}

.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 65px;
  width: 3px;
  height: 100%;
  background-color: var(--light-gray);
}

.process-step {
  position: relative;
  padding-left: 100px;
  margin-bottom: 50px;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 1;
}

.step-content {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.btn-call-small {
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.btn-call-small i {
  margin-right: 5px;
}

.btn-call-small:hover {
  background-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* 진료시간 페이지 스타일 */
.hours-section {
  padding: 60px 0;
}

.hours-card, .appointment-card, .doctors-schedule, .emergency-info {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.hours-header, .appointment-header, .schedule-header, .emergency-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 20px;
}

.hours-header h2, .appointment-header h2, .schedule-header h2, .emergency-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hours-header h2 i, .appointment-header h2 i, .schedule-header h2 i, .emergency-header h2 i {
  margin-right: 10px;
}

.hours-table-wrap, .schedule-table-wrap {
  padding: 20px;
  overflow-x: auto;
}

.hours-table, .schedule-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th, .hours-table td, .schedule-table th, .schedule-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.hours-table th, .schedule-table th {
  background-color: var(--light);
  font-weight: 700;
}

.hours-table tr:last-child td, .schedule-table tr:last-child td {
  border-bottom: none;
}

.hours-notes, .schedule-notes {
  padding: 20px;
  background-color: var(--light);
  border-top: 1px solid var(--light-gray);
}

.hours-notes p, .schedule-notes p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.hours-notes p:last-child, .schedule-notes p:last-child {
  margin-bottom: 0;
}

.hours-notes p i, .schedule-notes p i {
  color: var(--primary);
  margin-right: 10px;
}

.appointment-content {
  padding: 20px;
}

.appointment-method {
  margin-bottom: 30px;
}

.appointment-method h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.appointment-tips h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.appointment-tips ul {
  list-style: none;
  padding: 0;
}

.appointment-tips ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.appointment-tips ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.emergency-content {
  padding: 20px;
}

.emergency-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.emergency-contact-item {
  flex: 1;
  min-width: 250px;
  background-color: var(--light);
  padding: 15px;
  border-radius: 8px;
}

.emergency-contact-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.emergency-contact-item p {
  margin: 0;
}

.emergency-contact-item a {
  font-weight: 700;
}

/* 오시는 길 페이지 스타일 */
.directions-section {
  padding: 60px 0;
}

.address-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.address-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 20px;
}

.address-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
}

.address-header h2 i {
  margin-right: 10px;
}

.address-content {
  padding: 25px;
  text-align: center;
}

.main-address {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.address-detail {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.address-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-map-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background-color: var(--light);
  color: var(--dark);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-map-link i {
  margin-right: 8px;
  color: var(--primary);
}

.btn-map-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-map-link:hover i {
  color: var(--white);
}

.directions-map {
  margin-bottom: 40px;
}

.map-container.large {
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transportation-info {
  margin-bottom: 40px;
}

.transport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.transport-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.transport-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.transport-card h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.transport-details {
  font-size: 0.95rem;
}

.subway-route {
  margin-bottom: 20px;
}

.subway-route:last-child {
  margin-bottom: 0;
}

.subway-line-large {
  display: inline-flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.subway-line-large.line5 {
  background-color: #8b50a4;
}

.subway-line-large.line9 {
  background-color: #cea43a;
}

.bus-types {
  margin-bottom: 15px;
}

.bus-type-group {
  margin-bottom: 10px;
}

.bus-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  margin-right: 5px;
  margin-bottom: 5px;
}

.bus-badge.general {
  background-color: #3e7ddb;
}

.bus-badge.green {
  background-color: #5cb95c;
}

.parking-info {
  margin-top: 15px;
  background-color: var(--light);
  padding: 15px;
  border-radius: 8px;
}

.parking-info h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.parking-info h4 i {
  color: var(--primary);
  margin-right: 8px;
}

.parking-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.parking-info ul li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.parking-info ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.nearby-facilities {
  margin-bottom: 40px;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.facility-item {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.facility-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.facility-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.facility-item h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.facility-item p {
  font-size: 0.9rem;
  color: var(--gray);
}

.contact-section {
  padding-bottom: 60px;
}

.contact-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-header {
  background-color: var(--primary);
  color: var(--white);
  padding: 20px;
}

.contact-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
}

.contact-header h2 i {
  margin-right: 10px;
}

.contact-content {
  padding: 25px;
}

.contact-item {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 20px;
}

.contact-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.contact-type {
  width: 100px;
  font-weight: 700;
  color: var(--dark);
}

.contact-value {
  flex: 1;
}

.contact-value a {
  color: var(--primary);
  font-weight: 500;
}

.cta-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--white);
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-content .btn-primary {
  background-color: var(--white);
  color: var(--primary);
  padding: 15px 30px;
  font-size: 1.1rem;
}

.cta-content .btn-primary:hover {
  background-color: var(--light);
  color: var(--primary-dark);
}

/* 플로팅 버튼 */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.float-call, .float-map {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.float-call {
  background-color: var(--primary);
  color: var(--white);
}

.float-map {
  background-color: var(--white);
  color: var(--primary);
}

.float-call:hover, .float-map:hover {
  transform: scale(1.1);
}

/* 애니메이션 */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* 진료과목 페이지 스타일 */
.treatments-section {
  padding: 60px 0;
}

.treatment-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.treatment-header {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  background-color: var(--primary);
  color: var(--white);
}

.treatment-icon {
  font-size: 2.5rem;
  margin-right: 20px;
}

.treatment-header h2 {
  margin: 0;
  font-size: 1.8rem;
  color: var(--white);
}

.treatment-content {
  padding: 30px;
}

.treatment-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.treatment-details {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.detail-column {
  flex: 1;
}

.detail-column h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.detail-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-column ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.detail-column ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.treatment-approach {
  background-color: var(--light);
  padding: 25px;
  border-radius: 8px;
}

.treatment-approach h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.treatment-approach p {
  margin-bottom: 15px;
}

.treatment-approach ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.treatment-approach ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.treatment-approach ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.treatment-approach ul li strong {
  color: var(--primary-dark);
}

/* 병원 둘러보기 페이지 스타일 */
.tour-gallery-section {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item.large {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.facility-features {
  padding: 60px 0;
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  background-color: var(--white);
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover,
.feature-item.active {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.feature-item p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 준비 중 페이지 스타일 */
.coming-soon {
  padding: 100px 0;
  text-align: center;
}

.coming-soon-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 50px 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.coming-soon-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.coming-soon-content p {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 10px;
}

.coming-soon-buttons {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* 네비게이션 활성 링크 */
.desktop-nav ul li a.active,
.mobile-nav ul li a.active {
  color: var(--primary);
  font-weight: 700;
}

.desktop-nav ul li a.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}

/* 블로그 최신글 섹션 스타일 */
.blog-latest {
  background: #fff;
  padding: 40px 0 40px 0;
  border-radius: 10px;
  margin-bottom: 40px;
}
.blog-latest h2 {
  margin-bottom: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2956b2;
  padding-left: 10px;
}
#blog-posts {
  padding: 0 20px;
}
.blog-post {
  background: #f8f9fb;
  border-radius: 8px;
  padding: 18px 20px 14px 20px;
  margin-bottom: 22px;
  box-shadow: 0 2px 8px rgba(41,86,178,0.04);
  transition: box-shadow 0.2s;
}
.blog-post:last-child {
  margin-bottom: 0;
}
.blog-post:hover {
  box-shadow: 0 4px 16px rgba(41,86,178,0.10);
}
.blog-post h3 {
  margin: 0 0 8px 0;
  font-size: 1.08em;
  font-weight: 600;
}
.blog-post h3 a {
  color: #2956b2;
  text-decoration: none;
  transition: color 0.2s;
}
.blog-post h3 a:hover {
  color: #1a3877;
  text-decoration: underline;
}
.blog-post p {
  margin: 0 0 6px 0;
  color: #333;
  font-size: 1em;
}
.blog-post span {
  font-size: 0.92em;
  color: #888;
}

@media (min-width: 1201px) {
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
  }
}

.red-star {
  color: #dc3545;
  font-weight: bold;
}