/* cheongju_hospitals.html 에서 추출한 페이지 전용 스타일
   원래 <style> 블록 7개를 문서 순서 그대로 이어붙였다.
   순서가 캐스케이드이므로 규칙 순서를 바꾸면 안 된다. */

/* ── 블록 1/7 ── */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            overflow-x: clip;
            max-width: 100vw;
        }

        body {
            font-family: 'Noto Sans KR', Arial, sans-serif;
            line-height: 1.8;
            color: #333;
            background: #f8f9fa;
            max-width: 100vw;
            overflow-x: clip;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            overflow-x: hidden;
        }

        header {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #e74c3c;
        }

        .logo h1 {
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        .phone-number {
            font-size: 1.8rem;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .breadcrumb {
            background: white;
            padding: 15px 0;
            border-bottom: 1px solid #e9ecef;
        }

        .breadcrumb a {
            color: #6c757d;
            text-decoration: none;
            margin-right: 10px;
        }

        .breadcrumb a:hover {
            color: #e74c3c;
        }

        .breadcrumb span {
            color: #e74c3c;
            font-weight: 600;
        }

        .page-hero {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 24px 0;
            text-align: center;
        }

        .page-hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .page-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .hero-feature {
            background: rgba(255,255,255,0.1);
            padding: 15px 25px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
        }

        /* Summary Button - 우측 상단 */
        .summary-btn {
            position: fixed;
            top: 60px;
            right: 10px;
            background: #e74c3c;
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            border: none;
            transition: all 0.3s ease;
        }

        .summary-btn:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        .summary-popup {
    /* display: none; 제거 */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    overflow-y: auto;
}

.summary-popup.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.summary-content {
    background: white;
    margin: 50px auto;
    padding: 30px;
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.summary-popup.active .summary-content {
    transform: translateY(0);
}

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 1.5rem;
            cursor: pointer;
            color: #666;
            background: none;
            border: none;
        }

        .summary-content h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }

        .summary-section {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9ecef;
        }

        .summary-section h3 {
            color: #e74c3c;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .summary-section p, .summary-section ul {
            color: #555;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .summary-section ul {
            margin-left: 20px;
        }

        .quick-info {
            background: white;
            padding: 60px 0;
        }

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

        .info-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: #e74c3c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: white;
        }

        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

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

        .area-specialty {
            background: linear-gradient(135deg, #fdeaea 0%, #fad0d0 100%);
            border-left: 5px solid #e74c3c;
            padding: 25px;
            margin: 40px 0;
            border-radius: 10px;
        }

        .area-specialty h3 {
            color: #e74c3c;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .specialty-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .specialty-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #e74c3c;
        }

        .services-section {
            background: #f8f9fa;
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            cursor: pointer;
        }

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

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2c3e50;
        }

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

        .service-features {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: #fdeaea;
            color: #e74c3c;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .faq-section {
            background: white;
            padding: 80px 0;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 40px;
            margin-left: auto;
            margin-right: auto;
        }

        .faq-item {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .faq-question {
            background: #e74c3c;
            color: white;
            padding: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: background 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

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

        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            font-weight: 300;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

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

        .faq-answer p {
            color: #555;
            line-height: 1.7;
            margin: 0;
        }

        /* 의료기관 섹션 - 모바일 최적화 */
        .hospitals-section {
            background: #f8f9fa;
            padding: 50px 0;
        }

        .hospital-category {
            margin-bottom: 25px;
        }

        .category-title {
            background: #e74c3c;
            color: white;
            padding: 12px 15px;
            border-radius: 8px;
            margin-bottom: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: center;
        }

        .hospitals-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 12px;
        }

        .hospital-item {
            background: white;
            padding: 12px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .hospital-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        .hospital-name {
            font-size: 1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 6px;
        }

        .hospital-info {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .hospital-phone {
            color: #e74c3c;
            font-weight: 600;
            margin-top: 4px;
            font-size: 0.85rem;
        }

        .hospital-actions {
            display: flex;
            gap: 6px;
            margin-top: 8px;
        }

        .btn {
            padding: 6px 12px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 0.75rem;
            flex: 1;
            text-align: center;
        }

        .btn-primary {
            background: #e74c3c;
            color: white;
        }

        .btn-primary:hover {
            background: #c0392b;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: #ecf0f1;
            color: #2c3e50;
        }

        .btn-secondary:hover {
            background: #bdc3c7;
        }

        .emergency-banner {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            padding: 20px;
            border-radius: 15px;
            margin: 30px 0;
            text-align: center;
        }

        .emergency-banner h4 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .contact-cta {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .cta-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .cta-phone {
            font-size: 2.5rem;
            font-weight: 900;
            margin: 20px 0;
            color: #e74c3c;
        }

        .cta-button {
            display: inline-block;
            background: #e74c3c;
            color: white;
            padding: 18px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.2rem;
            margin-top: 20px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
        }

        .floating-call {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.6rem;
            box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
            z-index: 1001;
            animation: pulse 2s infinite;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .floating-call:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.7);
        }

        /* 네이버 블로그 고정 버튼 */
        .fixed-blog-btn {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #03C75A, #00B04F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 20px;
            box-shadow: 0 4px 12px rgba(3, 199, 90, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .fixed-blog-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(3, 199, 90, 0.6);
            color: white;
        }

        @keyframes pulse {
            0% { 
                transform: scale(1); 
                box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
            }
            50% { 
                transform: scale(1.05); 
                box-shadow: 0 8px 25px rgba(231, 76, 60, 0.7);
            }
            100% { 
                transform: scale(1); 
                box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
            }
        }

        @media (max-width: 768px) {
            html, body {
                overflow-x: clip;
                max-width: 100vw;
            }
            
            .container {
                max-width: 100%;
                overflow-x: hidden;
                padding: 0 15px;
            }

            .page-hero {
                padding: 24px 0;
            }

            .page-hero h1 {
                font-size: 1.8rem;
                margin-bottom: 10px;
            }

            .page-hero p {
                font-size: 1rem;
                margin: 0 auto 15px;
            }

            .hero-features {
                flex-direction: row;
                justify-content: center;
                gap: 10px;
                margin-top: 20px;
            }

            .hero-feature {
                padding: 8px 15px;
            }

            .summary-btn {
                top: 70px;
                right: 10px;
                padding: 8px 16px;
            }

            .summary-content {
                margin: 20px;
                padding: 20px;
            }

            .quick-info {
                padding: 30px 0;
            }

            .info-grid {
                gap: 15px;
                margin-top: 20px;
                grid-template-columns: 1fr;
            }

            .info-card {
                padding: 15px;
            }

            .info-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                margin: 0 auto 10px;
            }

            .info-card h3 {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }

            .info-card p {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .area-specialty {
                padding: 15px;
                margin: 20px 0;
            }

            .area-specialty h3 {
                font-size: 1.2rem;
                margin-bottom: 8px;
            }

            .area-specialty p {
                font-size: 0.9rem;
                line-height: 1.4;
            }

            .services-section {
                padding: 40px 0;
            }

            .section-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .section-subtitle {
                font-size: 0.9rem;
                margin-bottom: 25px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-top: 25px;
            }

            .service-card {
                padding: 15px;
            }

            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                margin: 0 auto 10px;
            }

            .service-card h3 {
                font-size: 1.1rem;
                margin-bottom: 8px;
            }

            .service-card p {
                line-height: 1.4;
                margin-bottom: 10px;
            }

            .faq-section {
                padding: 40px 0;
            }

            .faq-grid {
                gap: 10px;
                margin-top: 20px;
            }

            .faq-question {
                padding: 15px;
                font-size: 0.95rem;
            }

            .faq-answer.active {
                padding: 15px;
            }

            .faq-answer p {
                line-height: 1.5;
            }

            .hospitals-section {
                padding: 40px 0;
            }

            .hospital-category {
                margin-bottom: 20px;
            }

            .category-title {
                padding: 10px 15px;
                font-size: 1rem;
            }

            .hospitals-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .hospital-item {
                padding: 12px;
            }

            .hospital-name {
                font-size: 1rem;
                margin-bottom: 5px;
            }

            .hospital-info {
                font-size: 0.8rem;
            }

            .hospital-phone {
                margin-top: 3px;
            }

            .hospital-actions {
                flex-direction: column;
                gap: 5px;
                margin-top: 8px;
            }

            .btn {
                padding: 6px 12px;
                font-size: 0.75rem;
            }

            .emergency-banner {
                padding: 15px;
                margin: 20px 0;
            }

            .emergency-banner h4 {
                margin-bottom: 8px;
                font-size: 1rem;
            }

            .emergency-banner p {
                line-height: 1.4;
            }

            .contact-cta {
                padding: 30px 0;
            }

            .cta-phone {
                font-size: 1.8rem;
                margin: 10px 0;
            }

            .cta-button {
                padding: 12px 25px;
                font-size: 1rem;
                margin-top: 10px;
            }

            .floating-call {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
                font-size: 1.4rem;
                box-shadow: 0 4px 15px rgba(231, 76, 60, 0.6);
            }

            .floating-call:hover {
                transform: scale(1.05);
            }

            .fixed-blog-btn {
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            @keyframes pulse {
                0% { 
                    transform: scale(1); 
                    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.6);
                }
                50% { 
                    transform: scale(1.08); 
                    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.8);
                }
                100% { 
                    transform: scale(1); 
                    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.6);
                }
            }
        }

/* ── 블록 2/7 ── */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 32px 0;
    text-align: center;
}

.page-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    line-height: 1.5;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-feature {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

/* 모바일 컴팩트 스타일 */
@media (max-width: 768px) {
    .page-hero {
        padding: 15px 0;
    }
    
    .page-hero .container {
        padding: 0 15px;
    }
    
    .page-hero h1 {
        font-size: 1.3rem;
        margin: 0 0 8px 0;
        line-height: 1.2;
    }
    
    .page-hero p {
        margin: 0 0 12px 0;
        line-height: 1.3;
    }
    
    .hero-features {
        gap: 6px;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
    
    .hero-feature {
        padding: 4px 6px;
        font-size: 0.65rem;
        border-radius: 10px;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* 아주 작은 화면 (360px 이하) */
@media (max-width: 360px) {
    .page-hero {
        padding: 12px 0;
    }
    
    .page-hero h1 {
        font-size: 1.2rem;
    }
    
    .page-hero p {
        font-size: 0.8rem;
    }
    
    .hero-feature {
        padding: 3px 5px;
        font-size: 0.6rem;
    }
}

/* ── 블록 3/7 ── */
.faq-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-accordion {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-accordion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.main-accordion-header:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
}

.header-content {
    flex-grow: 1;
}

.main-accordion-header .section-title {
    margin: 0 0 10px 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.main-accordion-header .section-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.main-toggle-btn {
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.main-accordion-header.active .main-toggle-btn {
    transform: rotate(45deg);
}

.main-accordion-content {
    /* display: none; 제거 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: white;
    padding: 0 30px;  /* 위아래 패딩을 0으로 */
}
.main-accordion-content.active {
    /* display: block; 제거 */
    /* animation: slideDown 0.4s ease; 제거 */
    max-height: 2000px;  /* 충분한 높이 */
    padding: 30px;  /* 원래 패딩 복원 */
}

.faq-grid {
    display: grid;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
    background: #667eea;
    color: white;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-question:hover {
    background: #5a6fd8;
}

.faq-answer {
    /* display: none; 제거 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;  /* 위아래 패딩을 0으로 */
    background: white;
    border-top: 2px solid #667eea;
}
.faq-answer.active {
    /* display: block; 제거 */
    /* animation: slideDown 0.3s ease; 제거 */
    max-height: 500px;  /* 충분한 높이 */
    padding: 25px;  /* 원래 패딩 복원 */
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

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

@media (max-width: 768px) {
    .faq-section {
        padding: 25px 0;
    }
    
    .faq-section .container {
        padding: 0 15px;
    }
    
    .main-accordion-header {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .main-accordion-header .section-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .main-accordion-header .section-subtitle {
        font-size: 0.85rem;
    }
    
    .main-toggle-btn {
        margin: 10px 0 0 0;
        font-size: 1.5rem;
    }
    
    .main-accordion-content {
        padding: 15px;
    }
    
    .faq-grid {
        gap: 10px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-question::after {
        right: 20px;
        font-size: 1.2rem;
    }
    
    .faq-answer {
        padding: 15px 20px;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}
}

/* ── 블록 4/7 ── */
.main-accordion {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-accordion-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.main-accordion-header:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
}

.header-content {
    flex-grow: 1;
}

.main-accordion-header .section-title {
    margin: 0 0 10px 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.main-accordion-header .section-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.main-toggle-btn {
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.main-accordion-header.active .main-toggle-btn {
    transform: rotate(45deg);
}

.main-accordion-content {
    /* 기존: display: none; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: white;
    padding: 0 30px;
}
.main-accordion-content.active {
    /* 기존: display: block; */
    /* 기존: animation: slideDown 0.4s ease; */
    max-height: 2000px; /* 콘텐츠 양에 따라 충분한 높이 */
    padding: 30px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.service-card h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
}

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

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 특화서비스 아코디언 */
.feature-banner-accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-banner-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.feature-banner-header:hover {
    background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
}

.banner-icon {
    font-size: 1.3rem;
    margin-right: 12px;
}

.feature-banner-header h4 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 600;
}

.banner-toggle-btn {
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.feature-banner-header.active .banner-toggle-btn {
    transform: rotate(45deg);
}

.feature-banner-content {
    /* 기존: display: none; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: #fdeaea;
    padding: 0 20px; /* 위아래 패딩을 0으로 */
    border-top: 2px solid #e74c3c;
}
.feature-banner-content.active {
    /* 기존: display: block; */
    /* 기존: animation: slideDown 0.3s ease; */
    max-height: 800px; /* 배너 콘텐츠에 충분한 높이 */
    padding: 20px; /* 원래 패딩 복원 */
}

.feature-banner-content p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .main-accordion-header {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .main-accordion-header .section-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .main-accordion-header .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .main-toggle-btn {
        margin: 10px 0 0 0;
        font-size: 1.5rem;
    }
    
    .main-accordion-content {
        padding: 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 15px;
    }
    
    .service-card {
        padding: 8px;
        min-height: auto;
    }
    
    .service-card h3 {
        font-size: 0.85rem;
        margin: 0 0 4px 0;
        line-height: 1.2;
    }
    
    .service-card p {
        font-size: 0.7rem;
        line-height: 1.2;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .service-icon {
        font-size: 1.3rem;
        margin-bottom: 4px;
    }
    
    .service-features {
        gap: 2px;
        flex-wrap: wrap;
    }
    
    .feature-tag {
        font-size: 0.6rem;
        padding: 2px 4px;
        border-radius: 8px;
    }
    
    .feature-banner-header {
        padding: 10px 15px;
    }
    
    .banner-icon {
        font-size: 1.1rem;
        margin-right: 8px;
    }
    
    .feature-banner-header h4 {
        font-size: 0.9rem;
    }
    
    .banner-toggle-btn {
        font-size: 1.1rem;
    }
    
    .feature-banner-content {
        padding: 12px 15px;
    }
    
    .feature-banner-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
}

/* ── 블록 5/7 ── */
.main-accordion {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-accordion-header {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    position: relative;
}

.main-accordion-header:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-2px);
}

.header-content {
    flex-grow: 1;
}

.main-accordion-header .section-title {
    margin: 0 0 10px 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.main-accordion-header .section-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 400;
}

.main-toggle-btn {
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.main-accordion-header.active .main-toggle-btn {
    transform: rotate(45deg);
}

.main-accordion-content {
    /* 기존: display: none; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: #f8f9fa;
    padding: 0 30px; /* 위아래 패딩을 0으로 */
}
.main-accordion-content.active {
    /* 기존: display: block; */
    /* 기존: animation: slideDown 0.4s ease; */
    max-height: 2000px; /* 콘텐츠 양에 따라 충분한 높이 */
    padding: 30px; /* 원래 패딩 복원 */
}

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

.sub-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sub-accordion-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sub-accordion-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #27ae60;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.sub-accordion-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    border-color: #229954;
}

.sub-accordion-header.active {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.sub-accordion-icon {
    font-size: 1.3rem;
    margin-right: 12px;
}

.sub-accordion-header h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.sub-accordion-header.active h3 {
    color: white;
}

.sub-toggle-btn {
    font-size: 1.3rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #27ae60;
}

.sub-accordion-header.active .sub-toggle-btn {
    transform: rotate(45deg);
    color: white;
}

.sub-accordion-content {
    /* 기존: display: none; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: white;
    padding: 0 20px; /* 위아래 패딩을 0으로 */
    border-top: 2px solid #27ae60;
}
.sub-accordion-content.active {
    /* 기존: display: block; */
    /* 기존: animation: slideDown 0.3s ease; */
    max-height: 1500px; /* 서브 아코디언에 적절한 높이 */
    padding: 20px; /* 원래 패딩 복원 */
}

.sub-accordion-content p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.specialty-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.specialty-item {
    background: #f8f9ff;
    padding: 12px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    font-size: 0.9rem;
}

.specialty-item strong {
    color: #27ae60;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .main-accordion-header {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .main-accordion-header .section-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .main-accordion-header .section-subtitle {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .main-toggle-btn {
        margin: 10px 0 0 0;
        font-size: 1.5rem;
    }
    
    .main-accordion-content {
        padding: 15px;
    }
    
    .sub-accordion-header {
        padding: 10px 15px;
    }
    
    .sub-accordion-icon {
        font-size: 1.1rem;
        margin-right: 8px;
    }
    
    .sub-accordion-header h3 {
        font-size: 0.9rem;
    }
    
    .sub-toggle-btn {
        font-size: 1.1rem;
    }
    
    .sub-accordion-content {
        padding: 12px 15px;
    }
    
    .sub-accordion-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    
    .specialty-list {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .specialty-item {
        padding: 8px;
        font-size: 0.75rem;
    }
    
    .specialty-item strong {
        font-size: 0.8rem;
        margin-bottom: 2px;
    }
}

/* ── 블록 6/7 ── */
.main-accordion {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-accordion-header {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.main-accordion-header:hover {
    background: linear-gradient(135deg, #2980b9 0%, #1f5582 100%);
    transform: translateY(-2px);
}

.header-content {
    flex-grow: 1;
}

.main-accordion-header .section-title {
    margin: 0 0 10px 0;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.main-accordion-header .section-subtitle {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

.main-toggle-btn {
    font-size: 2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.main-accordion-header.active .main-toggle-btn {
    transform: rotate(45deg);
}

.main-accordion-content {
    /* 기존: display: none; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: #f8f9fa;
    padding: 0 30px; /* 위아래 패딩을 0으로 */
}
.main-accordion-content.active {
    /* 기존: display: block; */
    /* 기존: animation: slideDown 0.4s ease; */
    max-height: 2000px; /* 콘텐츠 양에 따라 충분한 높이 */
    padding: 30px; /* 원래 패딩 복원 */
}

.category-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.category-accordion-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-accordion-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #3498db;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-accordion-header:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #2980b9;
}

.category-accordion-header.active {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.category-icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

.category-accordion-header h3 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.category-accordion-header.active h3 {
    color: white;
}

.category-toggle-btn {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #3498db;
}

.category-accordion-header.active .category-toggle-btn {
    transform: rotate(45deg);
    color: white;
}

.category-accordion-content {
    /* 기존: display: none; */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    background: white;
    padding: 0 20px; /* 위아래 패딩을 0으로 */
    border-top: 2px solid #3498db;
}
.category-accordion-content.active {
    /* 기존: display: block; */
    /* 기존: animation: slideDown 0.3s ease; */
    max-height: 1200px; /* 카테고리 콘텐츠에 적절한 높이 */
    padding: 20px; /* 원래 패딩 복원 */
}

.hospitals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.hospital-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
}

.hospital-card:hover {
    border-color: #3498db;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.hospital-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.hospital-info {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.hospital-phone {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 500;
    margin-bottom: 10px;
}

.hospital-actions {
    display: flex;
    gap: 8px;
}

.btn {
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #3498db;
    color: white;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

.contact-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-phone {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 20px 0;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #e74c3c;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .main-accordion-header {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .main-accordion-header .section-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }
    
    .main-accordion-header .section-subtitle {
        font-size: 0.85rem;
    }
    
    .main-toggle-btn {
        margin: 10px 0 0 0;
        font-size: 1.5rem;
    }
    
    .main-accordion-content {
        padding: 15px;
    }
    
    .category-accordion-header {
        padding: 10px 15px;
    }
    
    .category-icon {
        font-size: 1.2rem;
        margin-right: 8px;
    }
    
    .category-accordion-header h3 {
        font-size: 1rem;
    }
    
    .category-toggle-btn {
        font-size: 1.2rem;
    }
    
    .category-accordion-content {
        padding: 12px;
    }
    
    .hospitals-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .hospital-card {
        padding: 10px;
    }
    
    .hospital-name {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .hospital-info {
        font-size: 0.8rem;
        margin-bottom: 5px;
        line-height: 1.3;
    }
    
    .hospital-phone {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    
    .hospital-actions {
        gap: 5px;
    }
    
    .btn {
        padding: 5px 8px;
        font-size: 0.75rem;
    }
    
    .contact-cta {
        padding: 25px 0;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    .cta-phone {
        font-size: 1.8rem;
        margin: 15px 0;
    }
    
    .cta-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* ── 블록 7/7 ── */
/* 접근성을 위한 숨김 클래스 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only:focus {
    position: static;
    width: auto;
    height: auto;
    padding: 0.5rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #000;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
}

/* Core Web Vitals 최적화 */
html {
    font-display: swap;
}

/* 레이아웃 시프트 방지 */
img, video {
    max-width: 100%;
    height: auto;
}

/* 스크롤 성능 최적화 */
* {
    scroll-behavior: smooth;
}

/* 애니메이션 성능 최적화 */
.floating-call,
.service-card,
.hospital-card,
.info-card {
    will-change: transform;
    backface-visibility: hidden;
}

/* 중요하지 않은 애니메이션 비활성화 (모바일) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
    
@media (max-width: 768px) {
    footer {
        padding: 25px 0 !important;
    }
    
    footer .container {
        padding: 0 15px;
    }
    
    footer h3 {
        font-size: 1.2rem !important;
        margin-bottom: 12px !important;
        line-height: 1.2 !important;
    }
    
    footer p:nth-child(2) {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    footer p:nth-child(3) {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
        line-height: 1.3 !important;
    }
    
    footer div {
        gap: 15px !important;
        margin: 15px 0 !important;
    }
    
    footer div span {
        font-size: 0.8rem !important;
    }
    
    footer p:last-child {
        font-size: 0.75rem !important;
        padding-top: 15px !important;
        margin-top: 15px !important;
        line-height: 1.3 !important;
    }
}

@media (max-width: 360px) {
    footer {
        padding: 20px 0 !important;
    }
    
    footer h3 {
        font-size: 1.1rem !important;
        margin-bottom: 10px !important;
    }
    
    footer p:nth-child(2) {
        font-size: 1.3rem !important;
        margin-bottom: 8px !important;
    }
    
    footer p:nth-child(3) {
        font-size: 0.85rem !important;
        margin-bottom: 12px !important;
    }
    
    footer div {
        gap: 10px !important;
        margin: 12px 0 !important;
    }
    
    footer div span {
        font-size: 0.75rem !important;
    }
    
    footer p:last-child {
        font-size: 0.7rem !important;
        padding-top: 12px !important;
        margin-top: 12px !important;
    }
}