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

        /* SEO용 숨김 텍스트 (스크린 리더와 검색엔진은 읽을 수 있음) */
        .page-title-seo {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        body {
            font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
            background-color: #f5f5f5;
        }

        .header {
            background: linear-gradient(135deg, #2c7a1f 0%, #1e5915 100%);
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .header-left {
            display: flex;
            align-items: center;
        }

        .header-icon {
            font-size: 32px;
            margin-right: 10px;
        }

        .header-title {
            color: white;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
        }

        /* 언어 선택 메뉴 */
        .language-selector {
            position: relative;
        }

        .language-dropdown {
            position: relative;
        }

        .language-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 15px;
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            border-radius: 5px;
            color: white;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .language-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .language-button .flag {
            font-size: 20px;
        }

        .language-button .arrow {
            font-size: 10px;
        }

        .language-menu {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 5px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            min-width: 200px;
            z-index: 1000;
            overflow: hidden;
        }

        .language-menu.show {
            display: block;
            animation: fadeIn 0.2s;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .language-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            color: #333;
            cursor: pointer;
            transition: background 0.2s;
        }

        .language-item:hover {
            background: #f5f5f5;
        }

        .language-item.google-translate-item {
            background: #f8f8f8;
            font-weight: bold;
            color: #4285f4;
        }

        .language-item.google-translate-item:hover {
            background: #e8f0fe;
        }

        .language-divider {
            height: 1px;
            background: #e0e0e0;
            margin: 5px 0;
        }

        .language-item .flag {
            font-size: 20px;
        }

        .search-container {
            display: flex;
            gap: 10px;
        }

        .search-input {
            padding: 10px 20px;
            border: 2px solid white;
            border-radius: 5px;
            width: 250px;
            font-size: 14px;
        }

        .search-btn {
            padding: 10px 20px;
            background: white;
            color: #7ec850;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }

        .nav-bar, .city-bar, .district-bar, .dong-bar {
            padding: 15px 20px;
            display: flex;
            gap: 10px;
            overflow-x: auto;
        }

        .nav-bar {
            background-color: #3d8b2f;
            box-shadow: 0 2px 3px rgba(0,0,0,0.1);
        }

        .city-bar {
            background-color: #4a9d3c;
            display: none;
        }

        .city-bar.show {
            display: flex;
        }

        .district-bar {
            background-color: #57af49;
        }

        .dong-bar {
            background-color: #f8f8f8;
            display: none;
            border-bottom: 1px solid #ddd;
        }

        .dong-bar.show {
            display: flex;
        }

        .nav-item, .city-item, .district-item, .dong-item {
            padding: 8px 15px;
            cursor: pointer;
            white-space: nowrap;
            border-radius: 3px;
            transition: background-color 0.3s;
        }

        .nav-item, .city-item, .district-item {
            color: white;
        }

        .dong-item {
            color: #333;
        }

        .nav-item:hover, .nav-item.active,
        .city-item:hover, .city-item.active,
        .district-item:hover, .district-item.active {
            background-color: rgba(255,255,255,0.2);
        }

        .dong-item:hover, .dong-item.active {
            background-color: #7ec850;
            color: white;
        }

        .stats {
            background: white;
            padding: 15px 20px;
            text-align: center;
            color: #666;
            border-bottom: 1px solid #ddd;
        }

        .stats strong {
            color: #7ec850;
            font-size: 24px;
        }

        /* 검색 결과 리스트 스타일 */
        .search-results-container {
            display: none;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 20px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
        }

        .search-results-container.show {
            display: block;
        }

        .search-results-header {
            padding: 15px 20px;
            background: #f8f8f8;
            border-bottom: 2px solid #7ec850;
            border-radius: 8px 8px 0 0;
            font-weight: bold;
            color: #333;
        }

        .search-result-item {
            padding: 15px 20px;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: background-color 0.2s;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .search-result-item:hover {
            background-color: #f8fff5;
        }

        .search-result-item:last-child {
            border-bottom: none;
            border-radius: 0 0 8px 8px;
        }

        .search-result-name {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            min-width: 200px;
        }

        .search-result-info {
            font-size: 14px;
            color: #666;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            flex: 1;
        }

        .search-result-info span {
            display: inline-flex;
            align-items: center;
        }

        .search-result-type {
            color: #7ec850;
            font-weight: 500;
            padding: 3px 10px;
            background: #f0f9eb;
            border-radius: 3px;
        }

        /* 목록 페이지 */
        .list-view {
            display: block;
        }

        .list-view.hide {
            display: none;
        }

        #map {
            width: 100%;
            height: 400px;
        }

        .hospital-list {
            padding: 20px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hospital-card {
            display: block;
            text-decoration: none;
            background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
            border-radius: 10px;
            padding: 20px;
            color: white !important;
            cursor: pointer;
            transition: transform 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.3);
        }

        .hospital-card:hover {
            transform: translateY(-5px);
        }

        .hospital-card:visited {
            color: white !important;
        }

        .hospital-name {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #7ec850 !important;
        }

        .hospital-type {
            margin: 8px 0;
            font-size: 14px;
            color: white !important;
        }

        .hospital-address {
            margin: 8px 0;
            font-size: 14px;
            color: white !important;
        }

        .hospital-phone {
            margin: 8px 0;
            font-size: 14px;
            color: white !important;
        }

        .hospital-doctors {
            margin: 8px 0;
            font-size: 14px;
            color: white !important;
        }

        .hospital-info {
            margin: 8px 0;
            font-size: 14px;
            line-height: 1.6;
        }

        /* 페이징 */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 30px 20px;
            gap: 10px;
        }

        .pagination button {
            padding: 8px 15px;
            border: 1px solid #7ec850;
            background: white;
            color: #7ec850;
            border-radius: 5px;
            cursor: pointer;
        }

        .pagination button:hover {
            background: #7ec850;
            color: white;
        }

        .pagination button.active {
            background: #7ec850;
            color: white;
        }

        .pagination button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* 상세 페이지 */
        .detail-view {
            display: none;
            background: white;
        }

        .detail-view.show {
            display: block;
        }

        .detail-header {
            background: #f8f8f8;
            padding: 20px;
            border-bottom: 2px solid #7ec850;
        }

        .detail-title {
            font-size: 28px;
            font-weight: bold;
            color: #333;
        }

        .back-btn {
            display: inline-block;
            margin-bottom: 15px;
            padding: 8px 20px;
            background: #7ec850;
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
        }

        .back-btn:hover {
            background: #6ab83a;
        }

        .detail-content {
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .detail-main {
            background: white;
        }

        .detail-sidebar {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 10px;
            min-height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
        }

        .detail-map-container {
            width: 100%;
            margin-top: 20px;
        }

        .detail-map {
            width: 100%;
            height: 400px;
            border-radius: 10px;
            border: 2px solid #e0e0e0;
        }

        .transport-item {
            padding: 10px;
            margin: 5px 0;
            background: #f9f9f9;
            border-left: 3px solid #7ec850;
            border-radius: 3px;
        }

        .transport-type {
            font-weight: bold;
            color: #7ec850;
            margin-right: 10px;
        }

        /* 푸터 스타일 */
        .footer {
            background: #2d2d2d;
            color: #999;
            padding: 40px 20px 20px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-company {
            margin-bottom: 20px;
        }

        .footer-company h3 {
            color: #7ec850;
            font-size: 20px;
            margin-bottom: 15px;
        }

        .footer-info {
            line-height: 1.8;
            font-size: 13px;
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #999;
            text-decoration: none;
            font-size: 13px;
            border-right: 1px solid #555;
            padding-right: 20px;
        }

        .footer-link:last-child {
            border-right: none;
        }

        .footer-link:hover {
            color: #7ec850;
        }

        .footer-copyright {
            border-top: 1px solid #444;
            padding-top: 20px;
            margin-top: 20px;
            text-align: center;
            font-size: 12px;
            color: #666;
        }

        /* 지도 마커 툴팁 스타일 */
        .hospital-tooltip {
            background: white;
            border: 2px solid #7ec850;
            border-radius: 4px;
            padding: 5px 10px;
            font-size: 13px;
            font-weight: bold;
            color: #333;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .hospital-tooltip:before {
            border-top-color: #7ec850;
        }

        @media (max-width: 768px) {
            .footer-links {
                flex-direction: column;
                gap: 10px;
            }

            .footer-link {
                border-right: none;
                padding-right: 0;
            }
        }

        .info-section {
            background: white;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
        }

        .info-section-title {
            background: #f5f5f5;
            padding: 10px 15px;
            margin: -20px -20px 15px -20px;
            border-bottom: 1px solid #e0e0e0;
            font-weight: bold;
            font-size: 16px;
        }
        
        .info-section h3 {
            background: #f5f5f5;
            padding: 10px 15px;
            margin: -20px -20px 15px -20px;
            border-bottom: 1px solid #e0e0e0;
            font-weight: bold;
            font-size: 16px;
        }

        .info-row {
            display: flex;
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            width: 120px;
            font-weight: bold;
            color: #666;
            display: flex;
            align-items: flex-start;
        }

        .info-label::before {
            content: '▸';
            margin-right: 8px;
            color: #7ec850;
        }

        .info-value {
            flex: 1;
            color: #333;
            line-height: 1.6;
        }

        .info-link {
            color: #0066cc;
            text-decoration: none;
        }

        .info-link:hover {
            text-decoration: underline;
        }

        .hours-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }

        .hours-table th,
        .hours-table td {
            padding: 12px;
            text-align: left;
            border: 1px solid #e0e0e0;
        }

        .hours-table th {
            background: #f5f5f5;
            font-weight: bold;
        }

        .hours-table tr:nth-child(even) {
            background: #fafafa;
        }

        .loading {
            text-align: center;
            padding: 40px;
            color: #666;
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: #999;
        }

        @media (max-width: 768px) {
            .detail-content {
                grid-template-columns: 1fr;
            }
            .detail-sidebar {
                display: none;
            }
        }

/* ========================================
   계층 필터 스타일
======================================== */
.filter-section {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.filter-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    padding: 10px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.2s;
    min-width: 100px;
    text-align: center;
}

.filter-button:hover {
    background: #f0f0f0;
    border-color: #4CAF50;
}

.filter-button.selected {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
    font-weight: bold;
}

/* ========================================
   Breadcrumb 스타일
======================================== */
.breadcrumb {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.breadcrumb a {
    color: #4CAF50;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.breadcrumb strong {
    color: #333;
}

/* ========================================
   Footer 스타일
======================================== */
.footer {
    background: #2d2d2d;
    color: #999;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-company {
    margin-bottom: 20px;
}

.footer-company h3 {
    color: #7ec850;
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-info {
    line-height: 1.8;
    font-size: 13px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    border-right: 1px solid #555;
    padding-right: 20px;
}

.footer-link:last-child {
    border-right: none;
}

.footer-link:hover {
    color: #7ec850;
}

.footer-copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* ========================================
   검색 섹션
======================================== */
.search-section {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    gap: 10px;
}

.search-section input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.search-section button {
    padding: 12px 30px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
}

.search-section button:hover {
    background: #45a049;
}

/* ========================================
   반응형
======================================== */
@media (max-width: 768px) {
    .filter-button {
        min-width: calc(50% - 5px);
    }
    
    .search-section {
        flex-direction: column;
    }
    
    .search-section button {
        width: 100%;
    }
}

/* ========================================
   상세 페이지 지도 스타일
======================================== */
.detail-map-container {
    width: 100%;
    margin-top: 20px;
}

.detail-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.info-section-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

/* ========================================
   아코디언 스타일
   ======================================== */

.accordion-section {
    margin: 30px 0;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #2c7a1f 0%, #1e5915 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.accordion-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.accordion-header:active {
    transform: translateY(0);
}

.accordion-content {
    margin-top: 20px;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#accordion-arrow {
    font-size: 20px;
    transition: transform 0.3s;
    display: inline-block;
}

.accordion-header.active #accordion-arrow {
    transform: rotate(180deg);
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .accordion-header {
        font-size: 16px;
        padding: 15px;
    }
    
    .accordion-content {
        margin-top: 15px;
    }
}
