/* ===== Subpage Styles ===== */

/* Page Banner */
.page-banner {
    margin-top: 75px;
    background: linear-gradient(135deg, #3E5A1A 0%, #5B7B2D 40%, #7A9E4A 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.page-banner .breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s ease;
}

.page-banner .breadcrumb a:hover {
    color: #ffffff;
}

.page-banner .breadcrumb span {
    margin: 0 8px;
}

/* Content Section */
.sub-content {
    padding: 80px 0;
    background: var(--white);
}

.sub-content .container {
    max-width: 1100px;
}

/* Greeting Page */
.greeting-section {
    padding: 80px 0;
}

.greeting-box {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
    margin-bottom: 60px;
}

.greeting-image {
    border-radius: 16px;
    overflow: hidden;
    margin-left: -300px;
}

.greeting-image img {
    width: 100%;
    height: auto;
    display: block;
}

.greeting-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.greeting-text .highlight {
    color: var(--green);
}

.greeting-text .sub-title {
    font-size: 15px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.greeting-text p {
    font-size: 15px;
    color: var(--gray);
    line-height: 2;
    margin-bottom: 16px;
}

.greeting-text .sign {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.greeting-text .sign span {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray);
    margin-left: 8px;
}

/* Philosophy Cards */
.philosophy-section {
    padding: 60px 0 80px;
    background: var(--gray-light);
}

.philosophy-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark);
}

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

.philosophy-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.philosophy-card i {
    font-size: 40px;
    color: var(--green);
    margin-bottom: 20px;
}

.philosophy-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.philosophy-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

/* History Timeline */
.history-section {
    padding: 60px 0 80px;
}

.history-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark);
}

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--green);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding: 0 0 30px 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--green);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--green);
}

.timeline-item .year {
    font-size: 18px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 4px;
}

.timeline-item .desc {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
}

/* Staff Page */
.staff-detail-section {
    padding: 80px 0;
}

.staff-profile {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 80px;
    align-items: start;
}

.staff-profile-photo {
    position: relative;
    margin-left: -400px;
}

.staff-profile-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.staff-profile-info .label {
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.staff-profile-info .name {
    font-size: 40px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: 6px;
    margin-bottom: 12px;
}

.staff-profile-info .motto {
    font-size: 16px;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.info-block {
    margin-bottom: 28px;
}

.info-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--green);
    display: inline-block;
}

.staff-profile-info {
    text-align: left;
}

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

.info-block ul li {
    font-size: 14px;
    color: var(--gray);
    line-height: 2;
    padding-left: 16px;
    position: relative;
    text-align: left;
}

.info-block ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
}

/* Equipment Page */
.equipment-section {
    padding: 80px 0;
}

.equipment-section > .container > p {
    text-align: center;
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 50px;
    line-height: 1.8;
}

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

.equipment-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 36px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.equipment-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.equipment-card:nth-child(2) { transition-delay: 0.1s; }
.equipment-card:nth-child(3) { transition-delay: 0.2s; }
.equipment-card:nth-child(4) { transition-delay: 0.3s; }
.equipment-card:nth-child(5) { transition-delay: 0.4s; }
.equipment-card:nth-child(6) { transition-delay: 0.5s; }
.equipment-card:nth-child(7) { transition-delay: 0.6s; }
.equipment-card:nth-child(8) { transition-delay: 0.7s; }

.equipment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.equipment-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.equipment-card .icon i {
    font-size: 24px;
    color: var(--white);
}

.equipment-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.equipment-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.8;
}

.equipment-card .tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--green);
    background: rgba(91, 123, 45, 0.08);
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 12px;
}

/* Non-covered Items Page */
.price-section {
    padding: 60px 0;
}

.price-main-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 50px;
    padding-bottom: 16px;
    border-bottom: 2px solid #ddd;
}

.price-section > .container > .notice {
    background: var(--gray-light);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-section > .container > .notice i {
    font-size: 20px;
    color: var(--green);
}

.price-section > .container > .notice p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.price-table-wrap {
    margin-bottom: 50px;
}

.price-table-wrap h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 6px;
    border-left: 4px solid var(--green);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 0;
    overflow: hidden;
}

.price-table thead {
    background: #c4a96a;
}

.price-table thead th {
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    text-align: left;
}

.price-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.price-table tbody tr:hover {
    background: rgba(91, 123, 45, 0.03);
}

.price-table tbody tr:last-child {
    border-bottom: none;
}

.price-table tbody td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--gray);
}

.price-table tbody td:first-child {
    font-weight: 500;
    color: var(--dark);
}

.price-note {
    margin-top: 30px;
    font-size: 13px;
    color: var(--gray);
    line-height: 1.8;
}

.price-note li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 4px;
}

.price-note li::before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--green);
}

/* Directions Page */
.direction-section {
    padding: 80px 0;
}

.direction-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 50px;
    height: 450px;
}

.direction-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.direction-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.direction-info-card {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 30px;
}

.direction-info-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.direction-info-card h3 i {
    color: var(--green);
    font-size: 20px;
}

.direction-info-card p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.8;
}

.direction-info-card .phone-big {
    font-size: 24px;
    font-weight: 700;
    color: var(--green);
    margin-top: 8px;
}

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

.hours-table tr td {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray);
    border-bottom: 1px solid #e8e8e8;
}

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

.hours-table tr td:first-child {
    font-weight: 600;
    color: var(--dark);
    width: 130px;
}

.hours-table tr.holiday td {
    color: #c0392b;
}

.transport-section {
    background: var(--gray-light);
    border-radius: 16px;
    padding: 40px;
}

.transport-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

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

.transport-item {
    text-align: center;
    padding: 20px;
}

.transport-item i {
    font-size: 32px;
    color: var(--green);
    margin-bottom: 14px;
}

.transport-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.transport-item p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.7;
}

/* Section Title */
.section-title-center {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-center h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-title-center p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
    .greeting-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .greeting-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .philosophy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .staff-profile {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .direction-info-grid {
        grid-template-columns: 1fr;
    }

    .transport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-banner {
        margin-top: 65px;
        padding: 60px 0 40px;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .staff-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .greeting-image {
        display: none;
    }

    .staff-profile-photo {
        max-width: 400px;
        margin: 0 auto;
    }

    .staff-profile-info .name {
        font-size: 32px;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .transport-grid {
        grid-template-columns: 1fr;
    }

    .direction-map {
        height: 300px;
    }

    .price-table {
        font-size: 13px;
    }

    .price-table thead th,
    .price-table tbody td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .page-banner h1 {
        font-size: 24px;
    }
}

/* ===== Clinic Page Styles (clinic1.html) ===== */

/* Banner subtitle */
.page-banner .banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Clinic section blocks */
.clinic-section-block {
    padding: 80px 0;
}

.clinic-section-block.bg-light {
    background: #F5F5F3;
}

.clinic-section-block.clinic-dark-banner {
    background: linear-gradient(135deg, #2C4A1A 0%, #3E5A1A 50%, #4A6B25 100%);
    color: #fff;
}

.clinic-dark-banner .section-title-center h2 {
    color: #fff;
}

.clinic-dark-banner .section-title-center p {
    color: rgba(255,255,255,0.8);
}

/* Treatment types grid (6 items) */
.clinic-types-section {
    padding: 80px 0;
    background: #fff;
}

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

.treatment-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    padding: 48px 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.treatment-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.treatment-num {
    display: inline-block;
    font-size: 56px;
    font-weight: 900;
    color: var(--green);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    line-height: 1;
}

.treatment-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    padding-bottom: 0;
    border-bottom: none;
    display: block;
}

.treatment-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.9;
}

/* Accordion */
.accordion-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.clinic-dark-banner .accordion-item {
    border-bottom-color: rgba(255,255,255,0.2);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 26px;
    font-weight: 600;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.bg-light .accordion-header {
    color: #1a1a1a;
}

.clinic-dark-banner .accordion-header {
    color: #fff;
}

.accordion-header:hover {
    color: #5B7B2D;
}

.clinic-dark-banner .accordion-header:hover {
    color: #a8d060;
}

.accordion-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 0;
}

.accordion-item.active .accordion-body {
    max-height: 600px;
    padding: 0 0 24px 0;
}

.accordion-body p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 8px;
}

.clinic-dark-banner .accordion-body p {
    color: rgba(255,255,255,0.8);
}

/* Face condition grid */
.face-condition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.face-condition-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.face-condition-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

.face-condition-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.face-condition-icon i {
    font-size: 28px;
    color: #a8d060;
}

.face-condition-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.face-condition-card p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* Face treatment flow */
.face-treatment-box {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px;
    margin-top: 10px;
}

.face-treatment-box h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.face-treatment-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.flow-step {
    flex: 1;
    text-align: center;
    max-width: 220px;
}

.flow-num {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #5B7B2D;
    color: #fff;
    border-radius: 50%;
    line-height: 36px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.flow-step h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

.flow-arrow {
    display: flex;
    align-items: center;
    padding-top: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 16px;
}

/* Disc info */
.disc-info-box {
    max-width: 900px;
    margin: 0 auto 40px;
}

.disc-desc p {
    font-size: 18px;
    color: #555;
    line-height: 1.9;
    text-align: center;
}

/* Shoulder grid */
.shoulder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.shoulder-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.3s ease;
}

.shoulder-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.15);
}

.shoulder-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.shoulder-icon i {
    font-size: 24px;
    color: #a8d060;
}

.shoulder-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.shoulder-card p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
}

/* Elbow section */
.elbow-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.elbow-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elbow-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.elbow-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.elbow-badge.tennis {
    background: rgba(91, 123, 45, 0.1);
    color: #5B7B2D;
}

.elbow-badge.golf {
    background: rgba(196, 169, 106, 0.15);
    color: #9a7d3a;
}

.elbow-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.elbow-card p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.elbow-treatment-box {
    background: #F5F5F3;
    border-radius: 16px;
    padding: 40px;
}

.elbow-treatment-box h3 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.elbow-treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.elbow-treatment-item {
    text-align: center;
    padding: 20px 12px;
}

.elbow-treatment-item i {
    font-size: 32px;
    color: #5B7B2D;
    margin-bottom: 14px;
}

.elbow-treatment-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.elbow-treatment-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Clinic page responsive */
@media (max-width: 992px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .face-condition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shoulder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .face-treatment-flow {
        flex-wrap: wrap;
        gap: 20px;
    }
    .flow-arrow {
        display: none;
    }
    .flow-step {
        max-width: 45%;
    }
    .elbow-treatment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clinic-section-block {
        padding: 60px 0;
    }
    .treatment-grid {
        grid-template-columns: 1fr;
    }
    .face-condition-grid {
        grid-template-columns: 1fr;
    }
    .shoulder-grid {
        grid-template-columns: 1fr;
    }
    .elbow-grid {
        grid-template-columns: 1fr;
    }
    .elbow-treatment-grid {
        grid-template-columns: 1fr;
    }
    .flow-step {
        max-width: 100%;
    }
    .face-treatment-flow {
        flex-direction: column;
        align-items: center;
    }
    .accordion-header {
        font-size: 16px;
        padding: 20px 0;
    }
}

/* Phone icon flip */
.direction-info-card .fa-phone-alt {
    display: inline-block;
    transform: scaleX(-1);
}
