        .branch-info {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            gap: 40px;
            padding: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* 이미지 */
        .branch-image {
            flex: 1 1 0;
        }

        /* 내용 영역 */
        .branch-details {
            flex: 1 1 0;
            /* ← 이걸로 유연하게 나눔 */
            min-width: 0;
            /* ← 줄어들 수 있도록 제한 해제 */
        }


        .branch-image img {
            width: 100%;
            height: auto;
            max-width: 500px;
            border-radius: 8px;
            object-fit: cover;
            display: block;
        }

        .branch-details {
            flex: 1;
            min-width: 300px;
        }

        .branch-details h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #222;
        }

        .branch-table {
            display: flex;
            justify-content: space-between;
            width: 100%;
            gap: 0;
            /* 열 사이 간격 제거 */
        }

        .table-col {
            flex: 0 0 auto;
            /* ← 내용만큼 너비를 차지 */
            display: flex;
            flex-direction: column;
            gap: 16px;
            padding-right: 20px;
        }

        .table-col h4 {
            font-size: 18px;
            /* 폰트 크기 증가 */
            font-weight: bold;
            color: #006400;
            margin-bottom: 10px;
        }

        .table-col p {
            font-size: 17px;
            /* 폰트 크기 증가 */
            color: #444;
            line-height: 1.6;
        }

        .branch-details h2 {
            font-size: 36px;
            /* 지점명 크기 증가 */
            font-weight: 800;
            margin-bottom: 32px;
            color: #222;
        }

        .section-divider {
            position: relative;
            text-align: center;
            border: none;
            height: 1px;
            background: #ccc;
            margin: 40px auto;
            max-width: 1200px;
        }

        .section-divider {
            border: none;
            border-bottom: 3px solid #006400;
            margin: 40px auto;
            max-width: 1200px;
        }

        @media (max-width: 1200px) {
            .branch-details h2 {
                font-size: 34px;
            }

            .table-col h4 {
                font-size: 17px;
            }

            .table-col p {
                font-size: 16px;
            }

            .branch-info {
                padding: 36px;
                gap: 32px;
            }

            .branch-image img {
                max-width: 440px;
            }
        }

        @media (max-width: 1024px) {
            .branch-details h2 {
                font-size: 32px;
            }

            .table-col h4 {
                font-size: 16px;
            }

            .table-col p {
                font-size: 15px;
            }

            .branch-info {
                padding: 32px;
                gap: 28px;
            }

            .branch-image img {
                max-width: 400px;
            }
        }

        @media (max-width: 800px) {
            .branch-details h2 {
                font-size: 30px;
            }

            .table-col h4 {
                font-size: 15px;
            }

            .table-col p {
                font-size: 14px;
            }

            .branch-info {
                padding: 28px;
                gap: 24px;
            }

            .branch-image img {
                max-width: 360px;
            }
        }

        @media (max-width: 767px) {
            .branch-info {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .branch-image img {
                max-width: 100%;
                height: auto;
            }

            .branch-details {
                min-width: 100%;
            }

            .branch-details h2 {
                font-size: 28px;
                text-align: center;
            }

            .table-col {
                padding-right: 0;
            }

            .table-col h4,
            .table-col p {
                text-align: center;
            }

            .table-col h4 {
                font-size: 16px;
            }

            .table-col p {
                font-size: 15px;
            }
        }

        @media (max-width: 500px) {
            .branch-details h2 {
                font-size: 24px;
            }

            .table-col h4 {
                font-size: 13.5px;
            }

            .table-col p {
                font-size: 13.5px;
            }

            .branch-info {
                padding: 16px;
                gap: 16px;
            }

            .branch-image img {
                max-width: 100%;
                height: auto;
            }
        }

        @media (max-width: 400px) {
            .branch-details h2 {
                font-size: 22px;
            }

            .table-col h4 {
                font-size: 12.5px;
            }

            .table-col p {
                font-size: 12.5px;
            }

            .branch-info {
                padding: 14px;
                gap: 12px;
            }

            .branch-image img {
                max-width: 100%;
                height: auto;
            }
        }

        @media (max-width: 300px) {
            .branch-details h2 {
                font-size: 20px;
            }

            .table-col h4 {
                font-size: 11.5px;
            }

            .table-col p {
                font-size: 11.5px;
            }

            .branch-info {
                padding: 12px;
                gap: 10px;
            }

            .branch-image img {
                max-width: 100%;
                height: auto;
            }
        }