/* 클리닉 페이지 전용 스타일 */

/* 레이아웃 조정 */
.clinic-section {
    padding-bottom: 0;
}

/* CTA 배너를 위한 마진 조정 */
.faq-section {
    margin-bottom: 0;
}

/* 서브페이지 헤더 (병원소개 스타일과 동일) */
.sub-header {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    overflow: hidden;
}

.sub-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.sub-header-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
}

.sub-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.05rem;
    color: #fff;
}

.breadcrumb a {
    color: #fff;
    opacity: 0.8;
    transition: opacity 0.3s;
    text-decoration: none;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb .category {
    color: #fff;
    opacity: 0.8;
}

.breadcrumb .current {
    color: #00d4ff;
    font-weight: 500;
}

/* 클리닉 섹션 */
.clinic-section {
    padding: 80px 0;
}

.clinic-header {
    text-align: center;
    margin-bottom: 60px;
}

.clinic-subtitle {
    font-size: 0.95rem;
    color: #0066cc;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.clinic-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
}

.clinic-title .highlight {
    color: #0066cc;
}

/* 365일 강조 섹션 */
.highlight-section {
    margin-bottom: 60px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
}

.highlight-icon {
    text-align: center;
    flex-shrink: 0;
}

.icon-number {
    font-size: 5rem;
    font-weight: 900;
    color: #0066cc;
    display: block;
    line-height: 1;
}

.icon-text {
    font-size: 1.5rem;
    color: #0066cc;
    font-weight: 600;
    letter-spacing: 2px;
}

.highlight-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.highlight-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.highlight-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.highlight-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-weight: 500;
}

.highlight-features i {
    color: #28a745;
}

/* 경고 섹션 */
.warning-section {
    margin-bottom: 60px;
}

.warning-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.warning-card.critical {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border: 2px solid #ffc107;
}

.warning-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.warning-icon i {
    font-size: 3rem;
    color: #f39c12;
}

.warning-content h3 {
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: #333;
}

.risk-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #dc3545;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
}

/* 자가진단 체크리스트 */
.self-check-section {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

.section-title .highlight {
    color: #0066cc;
}

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

/* 코막힘 클리닉 페이지의 3개 카드 가운데 정렬 */
.self-check-section .check-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto 40px;
}

.check-category {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.check-category h4 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-category h4 i {
    color: #0066cc;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.check-list li::before {
    content: '□';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

.check-result {
    text-align: center;
    padding: 25px;
    background: #e8f2ff;
    border-radius: 10px;
}

.check-result p {
    font-size: 1.125rem;
    color: #0066cc;
    margin: 0;
}

.check-result strong {
    color: #dc3545;
}

/* 검사 프로세스 */
.process-section {
    margin-bottom: 60px;
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    flex-wrap: wrap;
}

.process-timeline::before {
    display: none;
}

.process-item {
    width: auto;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.process-content h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #333;
}

.process-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* 검사 항목 상세 */
.test-details-section {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

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

.test-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

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

.test-icon {
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.test-icon i {
    font-size: 2.5rem;
    color: #0066cc;
}

.test-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.test-item p {
    color: #666;
    line-height: 1.6;
}

/* 모바일 슬라이더 기본적으로 숨김 (PC에서) */
.mobile-test-slider,
.mobile-process-slider {
    display: none;
}

/* 치료 방법 상세 */
.treatment-section {
    margin-bottom: 60px;
}

.treatment-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
}

.treatment-detail.reverse {
    flex-direction: row-reverse;
}

.treatment-image {
    flex: 1;
    min-width: 400px;
}

.treatment-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.treatment-content {
    flex: 1;
}

.treatment-content h4 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.treatment-content h4 i {
    color: #0066cc;
}

.treatment-desc {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 30px;
}

.treatment-benefits,
.insurance-info,
.surgery-types,
.device-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.treatment-benefits h5,
.insurance-info h5,
.surgery-types h5,
.device-info h5 {
    font-size: 1.125rem;
    margin-bottom: 20px;
    color: #333;
}

.treatment-benefits ul,
.device-info ul {
    list-style: none;
    padding: 0;
}

.treatment-benefits li,
.device-info li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.treatment-benefits li::before,
.device-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.25rem;
}

.insurance-info p {
    color: #0066cc;
    line-height: 1.8;
    margin: 0;
}

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

.surgery-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.surgery-item h6 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.surgery-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* 생활습관 개선 */
.lifestyle-section {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

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

.lifestyle-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

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

.lifestyle-icon {
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.lifestyle-icon i {
    font-size: 2.5rem;
    color: #0066cc;
}

.lifestyle-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.lifestyle-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 장비 소개 */
.equipment-showcase {
    margin-bottom: 60px;
}

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

.equipment-item {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
}

.equipment-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #0066cc;
}

.equipment-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ 섹션 */
.faq-section {
    margin-bottom: 60px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h4 {
    font-size: 1.125rem;
    color: #333;
    margin: 0;
}

.faq-question i {
    color: #0066cc;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 30px 25px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* 돌발성 난청 타임라인 스타일 */
.warning-content h3 {
    text-align: center;
    font-size: 2.25rem;
    color: #dc3545;
    margin-bottom: 15px;
}

.warning-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 40px;
}

.treatment-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.timeline-item {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    min-width: 150px;
}

.timeline-item.optimal {
    border: 3px solid #dc3545;
}

.timeline-item.recommended {
    border: 3px solid #ffc107;
}

.timeline-item.late {
    border: 3px solid #6c757d;
    opacity: 0.8;
}

.timeline-number {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.timeline-item.optimal .timeline-number {
    color: #dc3545;
}

.timeline-item.recommended .timeline-number {
    color: #ffc107;
}

.timeline-item.late .timeline-number {
    color: #6c757d;
}

.timeline-label {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.timeline-desc {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

.timeline-arrow {
    font-size: 2rem;
    color: #ddd;
}

.warning-note {
    background: #fff;
    border-left: 4px solid #17a2b8;
    padding: 20px 30px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;
}

.warning-note i {
    font-size: 1.5rem;
    color: #17a2b8;
    flex-shrink: 0;
}

.warning-note p {
    margin: 0;
    font-size: 1.125rem;
    color: #555;
    font-style: italic;
}

.warning-note strong {
    color: #dc3545;
    font-weight: 700;
}

/* 이명 원인 섹션 스타일 */
.tinnitus-causes-section {
    margin-bottom: 60px;
}

.causes-container {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

.causes-header {
    text-align: center;
    margin-bottom: 50px;
}

.causes-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.causes-icon i {
    font-size: 3.5rem;
    color: #0066cc;
}

.causes-header h3 {
    font-size: 2.25rem;
    color: #333;
    font-weight: 700;
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.causes-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.causes-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.card-header i {
    font-size: 1.75rem;
}

.causes-card.common .card-header i {
    color: #ffc107;
}

.causes-card.other .card-header i {
    color: #17a2b8;
}

.card-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

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

.causes-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    font-size: 1.05rem;
    transition: all 0.2s;
}

.causes-list li:hover {
    color: #0066cc;
    padding-left: 10px;
}

.causes-list i {
    font-size: 0.875rem;
    color: #28a745;
    flex-shrink: 0;
}



/* 반응형 디자인 */
@media (max-width: 1200px) {
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-card {
        padding: 40px 30px;
    }
    
    .treatment-detail,
    .treatment-detail.reverse {
        flex-direction: column;
    }
    
    .treatment-image {
        min-width: auto;
    }
    
    .causes-grid {
        grid-template-columns: 1fr;
    }
}

/* 보청기/청각장애진단 페이지 스타일 */

/* 보청기 소개 섹션 */
.hearing-aid-intro {
    margin-bottom: 60px;
}

.intro-card {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 50px;
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.1);
}

.intro-icon {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.intro-icon i {
    font-size: 4rem;
    color: #0066cc;
}

.intro-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.intro-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.intro-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-features span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0066cc;
    font-weight: 500;
}

.intro-features i {
    color: #28a745;
}

/* 필요성 체크 섹션 */
.necessity-section {
    margin-bottom: 60px;
}

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

.necessity-card {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.necessity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.necessity-card .card-icon {
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.necessity-card .card-icon i {
    font-size: 2.5rem;
    color: #0066cc;
}

.necessity-card h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.necessity-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.necessity-card li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.necessity-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* 보청기 종류 섹션 */
.hearing-aid-types {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

.types-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.type-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.type-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.type-image i {
    font-size: 3rem;
    color: #fff;
}

.type-card h4 {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

.type-features {
    font-size: 0.95rem;
}

.feature-title {
    font-weight: 600;
    color: #0066cc;
    margin-top: 20px;
    margin-bottom: 10px;
}

.type-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.type-features li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.type-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: bold;
}

/* 보청기 처방 과정 */
.prescription-process {
    margin-bottom: 60px;
}

.process-timeline.horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.process-timeline.horizontal::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: #e9ecef;
    z-index: 0;
}

/* 청각장애 진단 섹션 */
.disability-section {
    margin-bottom: 60px;
}

.disability-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.disability-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.disability-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.disability-card .card-header i {
    font-size: 2rem;
    color: #0066cc;
}

.disability-card .card-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

/* 등급 테이블 */
.grade-table {
    overflow-x: auto;
}

.grade-table table {
    width: 100%;
    border-collapse: collapse;
}

.grade-table th {
    background: #f8f9fa;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e9ecef;
}

.grade-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: #555;
}

.grade-table td strong {
    color: #0066cc;
    font-weight: 600;
}

/* 진단서 발급 절차 */
.procedure-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.procedure-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s;
}

.procedure-item:hover {
    background: #e8f2ff;
    transform: translateX(10px);
}

.procedure-item .step {
    background: #0066cc;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    flex-shrink: 0;
}

.procedure-item h5 {
    font-size: 1.125rem;
    margin-bottom: 5px;
    color: #333;
}

.procedure-item p {
    color: #666;
    margin: 0;
}

/* 보청기 지원금 안내 */
.support-section {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f2ff 100%);
    padding: 60px;
    border-radius: 20px;
    margin-bottom: 60px;
}

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

.support-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-icon i {
    font-size: 2.5rem;
    color: #0066cc;
}

.support-card h4 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #333;
}

.support-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.support-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
}

.support-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.support-content li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.support-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* 보청기 관리 팁 */
.maintenance-section {
    margin-bottom: 60px;
}

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

.maintenance-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.maintenance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #0066cc;
}

.maintenance-icon {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.maintenance-icon i {
    font-size: 2rem;
    color: #0066cc;
}

.maintenance-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.maintenance-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* 청각장애 진단 과정 */
.diagnosis-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.diagnosis-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s;
}

.diagnosis-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.diagnosis-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.diagnosis-content {
    padding-top: 20px;
}

.diagnosis-content h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #333;
}

.diagnosis-content p {
    color: #666;
    line-height: 1.6;
}

/* 생활 환경별 맞춤 */
.environment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.environment-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.environment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.env-icon {
    width: 80px;
    height: 80px;
    background: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.env-icon i {
    font-size: 2.5rem;
    color: #0066cc;
}

.environment-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #333;
}

.environment-card p {
    color: #666;
    line-height: 1.6;
}

/* 인지 기능 통계 */
.cognitive-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

/* 기침 클리닉 치료 접근법 */
.treatment-approach-section {
    margin-bottom: 60px;
}

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

.treatment-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.treatment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.treatment-header i {
    font-size: 2rem;
    color: #0066cc;
}

.treatment-header h4 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

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

.treatment-content li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.treatment-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

@media (max-width: 992px) {
    .check-grid,
    .test-items-grid,
    .equipment-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .sub-title {
        font-size: 2rem;
    }
    
    .clinic-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .check-grid,
    .test-items-grid,
    .lifestyle-grid,
    .equipment-features {
        grid-template-columns: 1fr;
    }
    
    .risk-stats {
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .surgery-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-box,
    .self-check-section,
    .test-details-section,
    .lifestyle-section,
    .clinic-cta-section {
        padding: 40px 20px;
    }
    
    /* 타임라인 반응형 */
    .timeline-arrow {
        display: none;
    }
    
    .treatment-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-item {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline-number {
        font-size: 2.5rem;
    }
    
    .timeline-label {
        font-size: 1.25rem;
    }
    
    /* 이명 원인 반응형 */
    .causes-container {
        padding: 40px 20px;
    }
    
    .causes-header h3 {
        font-size: 1.75rem;
    }
    
    .causes-icon {
        width: 80px;
        height: 80px;
    }
    
    .causes-icon i {
        font-size: 2.5rem;
    }
    
    .causes-card {
        padding: 30px 20px;
    }
    
    .card-header h4 {
        font-size: 1.25rem;
    }
    
    .causes-list li {
        font-size: 0.95rem;
    }
    
    /* 보청기 페이지 모바일 */
    .intro-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .intro-features {
        justify-content: center;
    }
    
    .necessity-grid,
    .types-showcase,
    .support-cards,
    .maintenance-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline.horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .process-arrow {
        display: none;
    }
    
    .hearing-aid-types {
        padding: 40px 20px;
    }
    
    .support-section {
        padding: 40px 20px;
    }
    
    .grade-table {
        font-size: 0.875rem;
    }
    
    .grade-table th,
    .grade-table td {
        padding: 10px;
    }
    
    .diagnosis-process {
        grid-template-columns: 1fr;
    }
    
    .environment-grid {
        grid-template-columns: 1fr;
    }
    
    .cognitive-stats {
        gap: 30px;
    }
    
    /* 기침 클리닉 모바일 */
    .treatment-cards {
        grid-template-columns: 1fr;
    }
    
    /* 서브헤더 모바일 */
    .sub-header {
        height: 300px;
    }
    
    .sub-title {
        font-size: 2rem;
    }
}

/* 네이버 블로그 버튼 스타일 */
.blog-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #03C75A;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.blog-button:hover {
    background-color: #02b351;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 199, 90, 0.3);
}

.blog-button svg {
    width: 20px;
    height: 20px;
}

/* FAQ 답변 내 블로그 버튼 정렬 */
.faq-answer {
    padding: 20px 0;
}

.faq-answer p {
    margin-bottom: 0;
}

/* Q&A 섹션 스타일 */
.qna-section {
    margin: 80px 0;
    padding: 0 20px;
}

.qna-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
}

.qna-list {
    max-width: 900px;
    margin: 0 auto;
}

.qna-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.qna-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #e8f2ff;
}

.qna-item.active {
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    border-color: #0066cc;
}

.qna-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
}

.qna-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #0066cc;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.qna-item.active .qna-question::before {
    transform: scaleY(1);
}

.qna-question:hover {
    background: #e9ecef;
}

.qna-item.active .qna-question {
    background: #e8f2ff;
}

.qna-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
    flex: 1;
    padding-right: 20px;
    transition: color 0.3s ease;
}

.qna-item.active .qna-question h4 {
    color: #0066cc;
    font-weight: 600;
}

.qna-question i {
    color: #0066cc;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.2rem;
    opacity: 0.8;
}

.qna-item.active .qna-question i {
    transform: rotate(180deg);
    opacity: 1;
}

.qna-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.qna-item.active .qna-answer {
    max-height: 500px;
}

.qna-answer-content {
    padding: 25px 30px 30px;
    color: #555;
    line-height: 1.8;
    animation: fadeIn 0.4s ease;
}

.qna-answer-content p {
    margin: 0;
    font-size: 1.05rem;
}

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

/* Q&A 아이콘 호버 효과 */
.qna-question:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* 순차적 나타남 효과 - 데스크탑에서만 */
@media (min-width: 769px) {
    .qna-item {
        opacity: 0;
        transform: translateY(20px);
        animation: slideUp 0.6s ease forwards;
    }

    .qna-item:nth-child(1) { animation-delay: 0.1s; }
    .qna-item:nth-child(2) { animation-delay: 0.2s; }
    .qna-item:nth-child(3) { animation-delay: 0.3s; }
    .qna-item:nth-child(4) { animation-delay: 0.4s; }
    .qna-item:nth-child(5) { animation-delay: 0.5s; }
    .qna-item:nth-child(6) { animation-delay: 0.6s; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================== 클리닉 페이지 UI 개선 추가 스타일 ===================== */

/* 하단 네이버 예약하기 버튼 섹션 */
.bottom-cta-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #e9ecef;
}

.naver-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #03C75A;
    color: white;
    padding: 16px 36px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 199, 90, 0.3);
}

.naver-booking-btn:hover {
    background: #02b351;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 199, 90, 0.4);
}

.naver-booking-btn svg {
    width: 24px;
    height: 24px;
}

/* 데스크탑에서 모바일 프로세스 슬라이더 숨기기 */
@media (min-width: 769px) {
    .mobile-process-slider {
        display: none !important;
    }
    
    .mobile-test-slider {
        display: none !important;
    }
}

/* ===================== 클리닉 페이지 모바일 전용 스타일 ===================== */
@media (max-width: 768px) {
    /* 기본 레이아웃 조정 */
    .clinic-section {
        padding: 30px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* 클리닉 헤더 - 가운데 정렬 */
    .clinic-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .clinic-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .clinic-title {
        font-size: 24px;
        line-height: 1.4;
        word-break: keep-all;
    }

    .clinic-title .highlight {
        display: inline-block;
        white-space: nowrap;
    }

    /* 365일 강조 섹션 */
    .highlight-section {
        margin-bottom: 40px;
    }

    .highlight-box {
        padding: 30px 20px;
        border-radius: 20px;
        text-align: center;
        flex-direction: column;
        gap: 30px;
    }

    .highlight-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .icon-number {
        font-size: 28px;
        font-weight: 800;
        color: #2c5aa0;
        line-height: 1;
    }

    .icon-text {
        font-size: 10px;
        color: #666;
        margin-top: 2px;
    }

    .highlight-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: #333;
    }

    .highlight-content p {
        font-size: 14px;
        line-height: 1.6;
        color: #666;
        word-break: keep-all;
        margin-bottom: 20px;
    }

    .highlight-features {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .highlight-features span {
        font-size: 13px;
        color: #28a745;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* 경고 섹션 - 간소화 */
    .warning-section {
        margin-bottom: 40px;
    }

    .warning-card {
        padding: 25px 20px;
        border-radius: 15px;
        text-align: center;
    }

    .warning-icon {
        font-size: 40px;
        margin-bottom: 15px;
        color: #ff6b6b;
    }

    .warning-content h3 {
        font-size: 18px;
        margin-bottom: 20px;
        color: #333;
    }

    .risk-stats {
        display: flex;
        justify-content: space-around;
        gap: 10px;
    }

    .stat-item {
        flex: 1;
        text-align: center;
    }

    .stat-number {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: #ff6b6b;
        margin-bottom: 5px;
    }

    .stat-desc {
        font-size: 11px;
        color: #666;
        line-height: 1.3;
        word-break: keep-all;
    }

    /* 자가진단 체크리스트 - 가운데 정렬 */
    .self-check-section {
        background: #f8f9fa;
        padding: 40px 20px;
        margin: 0 -20px 40px;
        text-align: center;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
        text-align: center;
        word-break: keep-all;
    }

    .section-title .highlight {
        color: #2c5aa0;
    }

    .check-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .check-category {
        background: #fff;
        padding: 25px 20px;
        border-radius: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .check-category h4 {
        font-size: 16px;
        margin-bottom: 15px;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .check-category h4 i {
        font-size: 18px;
        color: #2c5aa0;
    }

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

    .check-list li {
        position: relative;
        padding: 8px 0;
        font-size: 14px;
        color: #555;
        text-align: center;
        word-break: keep-all;
    }

    .check-result {
        margin-top: 25px;
        padding: 20px;
        background: #fff3cd;
        border-radius: 10px;
        text-align: center;
    }

    .check-result p {
        margin: 0;
        font-size: 14px;
        color: #856404;
        word-break: keep-all;
    }

    .check-result strong {
        color: #ff6b6b;
        font-weight: 600;
    }

    /* 프로세스 섹션 - 모바일 슬라이더 */
    .process-section {
        margin-bottom: 40px;
        overflow: hidden;
    }

    /* 기존 프로세스 타임라인 숨기기 */
    .process-timeline {
        display: none !important;
    }

    /* 모바일 슬라이더 컨테이너 */
    .mobile-process-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 0 0 50px 0;
    }

    /* 슬라이더 래퍼 */
    .mobile-process-wrapper {
        display: flex;
        transition: transform 0.3s ease-out;
        will-change: transform;
    }

    /* 슬라이드 아이템 */
    .mobile-process-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* 슬라이드 콘텐츠 */
    .mobile-process-content {
        background: white;
        border-radius: 16px;
        padding: 40px 25px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* 프로세스 번호 */
    .mobile-process-number {
        width: 60px;
        height: 60px;
        background: #2c5aa0;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 25px;
        box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
    }

    /* 프로세스 제목 및 설명 */
    .mobile-process-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #333;
        line-height: 1.4;
    }

    .mobile-process-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        word-break: keep-all;
    }

    /* 네비게이션 버튼 */
    .mobile-process-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        pointer-events: none;
        z-index: 5;
    }

    .mobile-process-btn {
        position: absolute;
        width: 40px;
        height: 40px;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: all;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-process-btn:active {
        transform: scale(0.9);
    }

    .mobile-process-btn.prev {
        left: 10px;
    }

    .mobile-process-btn.next {
        right: 10px;
    }

    .mobile-process-btn.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .mobile-process-btn svg {
        width: 20px;
        height: 20px;
        color: #666;
    }

    /* 인디케이터 */
    .mobile-process-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 5;
    }

    .mobile-process-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-process-dot.active {
        background: #2c5aa0;
        width: 24px;
        border-radius: 4px;
    }

    /* 기존 인디케이터 숨기기 */
    .process-indicators {
        display: none !important;
    }

    /* 검사 항목 모바일 슬라이더 */
    .test-details-section {
        margin-bottom: 40px;
        overflow: hidden;
    }

    /* 기존 그리드 숨기기 */
    .test-items-grid {
        display: none !important;
    }

    /* 모바일 측정항목 슬라이더 */
    .mobile-test-slider {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 0 0 50px 0;
    }

    .mobile-test-wrapper {
        display: flex;
        transition: transform 0.3s ease-out;
        will-change: transform;
    }

    .mobile-test-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .mobile-test-content {
        background: white;
        border-radius: 16px;
        padding: 40px 25px;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mobile-test-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #e8f2ff 0%, #d4e8ff 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        box-shadow: 0 4px 12px rgba(44, 90, 160, 0.2);
    }

    .mobile-test-icon i {
        font-size: 36px;
        color: #2c5aa0;
    }

    .mobile-test-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 12px;
        color: #333;
        line-height: 1.4;
    }

    .mobile-test-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        word-break: keep-all;
    }

    /* 네비게이션 버튼 */
    .mobile-test-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        pointer-events: none;
        z-index: 5;
    }

    .mobile-test-btn {
        position: absolute;
        width: 40px;
        height: 40px;
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: all;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-test-btn:active {
        transform: scale(0.9);
    }

    .mobile-test-btn.prev {
        left: 10px;
    }

    .mobile-test-btn.next {
        right: 10px;
    }

    .mobile-test-btn.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .mobile-test-btn svg {
        width: 20px;
        height: 20px;
        color: #666;
    }

    /* 인디케이터 */
    .mobile-test-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 5;
    }

    .mobile-test-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ddd;
        cursor: pointer;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-test-dot.active {
        background: #2c5aa0;
        width: 24px;
        border-radius: 4px;
    }

    /* Q&A 섹션 - 모바일 최적화 */
    .qna-section {
        margin-bottom: 40px;
    }
    
    /* 모바일에서 Q&A 아이템 바로 표시 */
    .qna-item {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .qna-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .qna-item {
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .qna-item.active {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .qna-question {
        padding: 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
        background: #f8f9fa;
    }

    .qna-question h4 {
        flex: 1;
        font-size: 14px;
        font-weight: 500;
        color: #333;
        margin: 0;
        line-height: 1.5;
        word-break: keep-all;
        text-align: left;
    }

    .qna-question i {
        flex-shrink: 0;
        font-size: 12px;
        color: #999;
        transition: transform 0.3s ease;
        margin-top: 3px;
    }

    .qna-item.active .qna-question i {
        transform: rotate(180deg);
        color: #2c5aa0;
    }

    .qna-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .qna-item.active .qna-answer {
        max-height: 500px;
    }

    .qna-answer-content {
        padding: 20px;
        background: #fff;
    }

    .qna-answer-content p {
        font-size: 13px;
        line-height: 1.6;
        color: #555;
        margin: 0 0 15px;
        word-break: keep-all;
    }

    .qna-answer-content p:last-child {
        margin-bottom: 0;
    }

    /* 블로그 버튼 */
    .blog-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #03C75A;
        color: #fff;
        padding: 10px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .blog-button:hover {
        background: #02b351;
        transform: translateY(-1px);
    }

    .blog-button svg {
        width: 18px;
        height: 18px;
    }

    /* 하단 네이버 예약 버튼 */
    .bottom-cta-section {
        margin-top: 40px;
        padding: 30px 20px;
        text-align: center;
        border-top: 1px solid #e9ecef;
    }

    .naver-booking-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #03C75A;
        color: white;
        padding: 14px 30px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(3, 199, 90, 0.3);
        width: 100%;
        max-width: 280px;
    }

    /* CTA 배너 간소화 */
    .cta-banner {
        padding: 40px 0;
        text-align: center;
    }

    .cta-content {
        padding: 0 20px;
    }

    .cta-subtitle {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .cta-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        word-break: keep-all;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        max-width: 280px;
        margin: 0 auto;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 15px;
        width: 100%;
    }

    /* 숨김 처리 */
    .warning-badge,
    .features-list {
        display: none;
    }
}